diff --git a/src/app/page.tsx b/src/app/page.tsx index d33e68c..dd19caa 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,199 +1,91 @@ "use client"; -import HeroBillboardDashboard from "@/components/sections/hero/HeroBillboardDashboard"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; -import FeatureBento, { type FeatureCard } from "@/components/sections/feature/FeatureBento"; -import FeatureHoverPattern from "@/components/sections/feature/featureHoverPattern/FeatureHoverPattern"; -import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout"; -import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix"; -import PricingCardThree from "@/components/sections/pricing/PricingCardThree"; -import FaqDouble from "@/components/sections/faq/FaqDouble"; -import ContactCTA from "@/components/sections/contact/ContactCTA"; -import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; +import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery"; +import FeatureCardTwentyEight from "@/components/sections/feature/FeatureCardTwentyEight"; +import ContactSplit from "@/components/sections/contact/ContactSplit"; +import FooterBase from "@/components/sections/footer/FooterBase"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import { Bot, Brain, Sparkles, User, Code, Database, Workflow, Settings, Search, FileText, Send, CheckCircle, Zap, MessageSquare, CreditCard, Star, HelpCircle, Mail, Activity, Shield, Clock, BarChart3, Layers, GitBranch, Lock, Eye } from "lucide-react"; +import { Code, Layout, MessageSquare, Target, Mail } from "lucide-react"; -export default function AIAgentsTemplatePage() { - const navItems = [ - { name: "Features", id: "features" }, - { name: "Pricing", id: "pricing" }, - { name: "Docs", id: "docs" }, - { name: "Contact", id: "contact" }, - ]; +export default function Home() { + const navItems = [ + { name: "Services", id: "services" }, + { name: "Contact", id: "contact" }, + ]; - const features: FeatureCard[] = [ - { - bentoComponent: "3d-task-list", title: "Agent Tasks", items: [ - { icon: Search, label: "Research competitors", time: "2m ago" }, - { icon: FileText, label: "Analyze market data", time: "5m ago" }, - { icon: CheckCircle, label: "Generate report", time: "8m ago" }, - { icon: Send, label: "Send to stakeholders", time: "10m ago" }, - ], - description: "Agents break down complex goals into manageable tasks and execute them autonomously."}, - { - bentoComponent: "chat", aiIcon: Bot, - userIcon: User, - exchanges: [ - { userMessage: "Summarize our Q4 sales data", aiResponse: "Q4 revenue was $2.4M, up 23% from Q3. Top performer: Enterprise tier." }, - { userMessage: "What about customer retention?", aiResponse: "Retention rate improved to 94%, with churn down 12% quarter-over-quarter." }, - ], - placeholder: "Ask your agent anything...", title: "Natural Conversations", description: "Interact with your agents through natural language. They understand context and intent."}, - { - bentoComponent: "3d-card-grid", items: [ - { name: "Code", icon: Code }, - { name: "Data", icon: Database }, - { name: "Workflow", icon: Workflow }, - { name: "Config", icon: Settings }, - ], - centerIcon: Brain, - title: "Tool Integration", description: "Connect agents to your existing tools and let them take action across your entire stack."}, - ]; + const services = [ + { + id: "1", title: "Website Design", subtitle: "Stunning visual experiences", category: "Design", value: "Custom layouts"}, + { + id: "2", title: "Landing Pages", subtitle: "Optimized for conversion", category: "Marketing", value: "High conversion"}, + { + id: "3", title: "Lead Generation Systems", subtitle: "Capture more inquiries", category: "Growth", value: "Automated"}, + { + id: "4", title: "AI Chat Integration", subtitle: "24/7 engagement", category: "AI", value: "Smart support"}, + ]; - const testimonials = [ - { id: "1", name: "Sarah Chen", handle: "CTO at DataFlow", testimonial: "AgentFlow cut our data processing time by 80%.", imageSrc: "http://img.b2bpic.net/free-photo/successful-man-pointing-camera-with-finger_1262-3118.jpg" }, - { id: "2", name: "Marcus Rodriguez", handle: "VP Engineering at ScaleUp", testimonial: "We deployed 50 agents in production within a week.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-work_23-2149362876.jpg" }, - { id: "3", name: "Emily Watson", handle: "Head of AI at TechCorp", testimonial: "The tool integration is seamless.", imageSrc: "http://img.b2bpic.net/free-photo/handsome-young-man-working-laptop-smiling-while-sitting-sidewalk-cafe_231208-12079.jpg" }, - ]; + const footerColumns = [ + { title: "Navigation", items: [{ label: "Services", href: "#services" }, { label: "Contact", href: "#contact" }] }, + { title: "Company", items: [{ label: "Email: kjwebstudio@outlook.com", href: "mailto:kjwebstudio@outlook.com" }] }, + ]; - const pricingPlans = [ - { id: "starter", price: "$29/mo", name: "Starter", buttons: [{ text: "Get Started", href: "#" }], features: ["3 active agents", "5,000 runs/month", "Basic integrations"] }, - { id: "pro", price: "$99/mo", name: "Professional", buttons: [{ text: "Get Started", href: "#" }], features: ["15 active agents", "50,000 runs/month", "All integrations"] }, - { id: "business", badge: "Most Popular", price: "$299/mo", name: "Business", buttons: [{ text: "Get Started", href: "#" }], features: ["50 active agents", "250,000 runs/month", "Custom integrations"] }, - ]; - - const faqs = [ - { id: "1", title: "What are AI agents?", content: "Autonomous software that plans and executes tasks." }, - { id: "2", title: "How do I start?", content: "You can get your first agent running in under 15 minutes." }, - ]; - - const footerColumns = [ - { title: "Product", items: [{ label: "Features", href: "#features" }, { label: "Pricing", href: "#pricing" }] }, - { title: "Support", items: [{ label: "Contact", href: "#contact" }] }, - ]; - - return ( - - - - - - - - - - - - - - - - - - - ); -} + return ( + + + + + + + + + + console.log("Form submitted with email:", email)} + /> + + + + ); +} \ No newline at end of file