feat: update for agent
This commit is contained in:
@@ -2,9 +2,8 @@
|
||||
|
||||
import { cn } from "@/shared/lib/utils";
|
||||
import { motion } from "framer-motion";
|
||||
import { LucideIcon } from "lucide-react";
|
||||
import { ArrowRight, LucideIcon } from "lucide-react";
|
||||
import Link from "next/link";
|
||||
import { ArrowRight } from "lucide-react";
|
||||
|
||||
export interface FeatureCardProps {
|
||||
icon: LucideIcon;
|
||||
|
||||
@@ -54,7 +54,7 @@ export function useScrollAnimation(config: ScrollAnimationConfig = {}) {
|
||||
transition: {
|
||||
duration,
|
||||
delay,
|
||||
ease: "easeOut",
|
||||
ease: "easeOut" as const,
|
||||
},
|
||||
};
|
||||
}
|
||||
@@ -97,7 +97,7 @@ export const cardHover = {
|
||||
scale: 1.02,
|
||||
y: -5,
|
||||
transition: {
|
||||
type: "spring",
|
||||
type: "spring" as const,
|
||||
stiffness: 300,
|
||||
damping: 20,
|
||||
},
|
||||
|
||||
@@ -6,7 +6,6 @@ import { Button } from "@/shared/ui/button";
|
||||
import { Input } from "@/shared/ui/input";
|
||||
import { motion } from "framer-motion";
|
||||
import { ArrowRight, Sparkles } from "lucide-react";
|
||||
import Link from "next/link";
|
||||
|
||||
/**
|
||||
* CTA Section - финальный призыв к действию
|
||||
|
||||
@@ -4,10 +4,9 @@ import { useState, useEffect } from "react";
|
||||
import { cn } from "@/shared/lib/utils";
|
||||
import { Button } from "@/shared/ui/button";
|
||||
import { Sheet, SheetContent, SheetTrigger } from "@/shared/ui/sheet";
|
||||
import { Menu, X } from "lucide-react";
|
||||
import { Menu, Moon, Sun, X } from "lucide-react";
|
||||
import Link from "next/link";
|
||||
import { useTheme } from "next-themes";
|
||||
import { Moon, Sun } from "lucide-react";
|
||||
|
||||
const navigation = [
|
||||
{ name: "Возможности", href: "#features" },
|
||||
|
||||
@@ -3,7 +3,6 @@
|
||||
import { SectionContainer } from "@/features/section-container";
|
||||
import { SectionHeader } from "@/features/section-header";
|
||||
import { StepCard } from "@/features/step-card";
|
||||
import { motion } from "framer-motion";
|
||||
import { UserPlus, FolderPlus, Users as UsersIcon, Rocket } from "lucide-react";
|
||||
|
||||
const steps = [
|
||||
|
||||
@@ -41,7 +41,7 @@ const pricingPlans = [
|
||||
},
|
||||
{
|
||||
name: "Enterprise",
|
||||
price: "custom",
|
||||
price: "custom" as const,
|
||||
description: "Для крупного бизнеса",
|
||||
features: [
|
||||
{ text: "Неограниченные участники", included: true },
|
||||
|
||||
Reference in New Issue
Block a user