diff --git a/src/app/page.tsx b/src/app/page.tsx index 7c2b5be..bed9a27 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,4 +1,4 @@ -"use client" +"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; @@ -9,55 +9,166 @@ import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import FaqBase from '@/components/sections/faq/FaqBase'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import { Scissors, Star, Package, Award, MessageCircle, HelpCircle } from 'lucide-react'; +import { Sparkles, Star, TrendingUp, Users, MessageSquare, HelpCircle } from 'lucide-react'; -export default function LandingPage() { +const navItems = [ + { name: "Home", id: "/" }, + { name: "Services", id: "services" }, + { name: "Shop", id: "shop" }, + { name: "Contact", id: "faq" } +]; + +const heroCarouselItems = [ + { id: "1", imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Product showcase 1" }, + { id: "2", imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Product showcase 2" }, + { id: "3", imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Product showcase 3" }, + { id: "4", imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Product showcase 4" }, + { id: "5", imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Product showcase 5" }, + { id: "6", imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Product showcase 6" } +]; + +const serviceFeatures = [ + { + id: "1", title: "Web Design Excellence", author: "Design Team", description: "Beautiful and responsive web design that captures your brand essence and engages your audience.", tags: ["Design", "Web"], + imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Web design showcase" + }, + { + id: "2", title: "Development Innovation", author: "Dev Team", description: "Cutting-edge development solutions using modern technologies and best practices.", tags: ["Development", "Tech"], + imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Development showcase" + }, + { + id: "3", title: "Performance Optimization", author: "Tech Lead", description: "Lightning-fast websites optimized for search engines and user experience.", tags: ["Performance", "SEO"], + imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Performance metrics" + } +]; + +const products = [ + { + id: "1", name: "Premium Web Package", price: "$999", variant: "Full Service Website", imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Web package" + }, + { + id: "2", name: "E-commerce Solution", price: "$1,499", variant: "Complete Store Setup", imageSrc: "/placeholders/placeholder1.webp", imageAlt: "E-commerce solution" + }, + { + id: "3", name: "Mobile App Development", price: "$2,499", variant: "iOS & Android Apps", imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Mobile app" + }, + { + id: "4", name: "Enterprise Solution", price: "$4,999", variant: "Custom Integration", imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Enterprise package" + } +]; + +const metrics = [ + { id: "1", value: "500+", description: "Projects Completed" }, + { id: "2", value: "98%", description: "Client Satisfaction" }, + { id: "3", value: "10+", description: "Years Experience" }, + { id: "4", value: "50+", description: "Team Members" } +]; + +const testimonials = [ + { + id: "1", name: "Sarah Johnson", handle: "@sarahj", testimonial: "Exceptional service and amazing results. Our website traffic increased by 300%.", imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Sarah Johnson" + }, + { + id: "2", name: "Michael Chen", handle: "@mchen", testimonial: "Professional team that delivered beyond expectations. Highly recommended!", imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Michael Chen" + }, + { + id: "3", name: "Emma Davis", handle: "@emmadev", testimonial: "The quality of work and attention to detail is outstanding. Worth every penny.", imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Emma Davis" + }, + { + id: "4", name: "Alex Rodriguez", handle: "@alexr", testimonial: "Transformed our digital presence completely. Amazing communication throughout.", imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Alex Rodriguez" + }, + { + id: "5", name: "Jessica Lee", handle: "@jessicadev", testimonial: "Best investment we made for our business. Team is incredibly talented.", imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Jessica Lee" + }, + { + id: "6", name: "David Wilson", handle: "@davidwilson", testimonial: "Delivered on time, on budget, and exceeded all expectations. Perfect!", imageSrc: "/placeholders/placeholder1.webp", imageAlt: "David Wilson" + }, + { + id: "7", name: "Lisa Anderson", handle: "@lisatech", testimonial: "Professionalism and expertise at its finest. Would work with them again.", imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Lisa Anderson" + }, + { + id: "8", name: "James Martinez", handle: "@jmartinez", testimonial: "Outstanding support and maintenance. Truly partner in our success.", imageSrc: "/placeholders/placeholder1.webp", imageAlt: "James Martinez" + } +]; + +const faqs = [ + { + id: "1", title: "What services do you offer?", content: "We offer comprehensive web design, development, mobile app creation, and digital strategy services tailored to your business needs." + }, + { + id: "2", title: "How long does a project typically take?", content: "Project timelines vary based on complexity. Simple websites take 4-6 weeks, while complex applications may take 3-6 months." + }, + { + id: "3", title: "Do you provide ongoing support?", content: "Yes, we offer maintenance, support, and hosting services for all our projects. We ensure your site runs smoothly." + }, + { + id: "4", title: "What is your pricing model?", content: "We offer flexible pricing based on project scope. We provide custom quotes after understanding your requirements." + } +]; + +const footerColumns = [ + { + title: "Services", items: [ + { label: "Web Design", href: "#services" }, + { label: "Development", href: "#services" }, + { label: "Mobile Apps", href: "#services" } + ] + }, + { + title: "Company", items: [ + { label: "About Us", href: "/" }, + { label: "Our Team", href: "/" }, + { label: "Careers", href: "/" } + ] + }, + { + title: "Resources", items: [ + { label: "Blog", href: "/" }, + { label: "Documentation", href: "/" }, + { label: "Support", href: "#faq" } + ] + } +]; + +export default function Home() { return (
@@ -65,83 +176,45 @@ export default function LandingPage() {
@@ -149,110 +222,45 @@ export default function LandingPage() {
); -} +} \ No newline at end of file