diff --git a/src/app/page.tsx b/src/app/page.tsx index 48078ae..5b93815 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,19 +2,18 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import Link from "next/link"; -import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; -import HeroOverlay from "@/components/sections/hero/HeroOverlay"; -import ProductCardThree from "@/components/sections/product/ProductCardThree"; -import FeatureBento from "@/components/sections/feature/FeatureBento"; -import PricingCardTwo from "@/components/sections/pricing/PricingCardTwo"; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import HeroCarouselLogo from "@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo"; import MediaAbout from "@/components/sections/about/MediaAbout"; -import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen"; +import FeatureBento from "@/components/sections/feature/FeatureBento"; +import PricingCardThree from "@/components/sections/pricing/PricingCardThree"; +import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen"; import FooterCard from "@/components/sections/footer/FooterCard"; -import { Coffee, Zap, Leaf, Award, Sparkles, Droplets, Instagram, Facebook, Twitter, Mail } from "lucide-react"; +import { Sparkles, Award, Zap, Coffee, Leaf, Instagram, Facebook, Twitter, Mail, Shield, Users } from "lucide-react"; const navItems = [ { name: "Shop", id: "/products" }, - { name: "About Us", id: "/about" }, + { name: "About", id: "/about" }, { name: "Subscription", id: "/subscription" }, { name: "Blog", id: "/blog" }, { name: "Contact", id: "/contact" }, @@ -23,310 +22,155 @@ const navItems = [ export default function HomePage() { return ( {/* Navigation */} {/* Hero Section */}
- -
- - {/* Product Showcase */} -
- -
- - {/* Features & Benefits */} -
- -
- - {/* Subscription Plans */} -
-
{/* About Section */}
- {/* Testimonials */} + {/* Features Section */} +
+ +
+ + {/* Pricing Section */} +
+ +
+ + {/* Testimonials Section */}
-
@@ -339,27 +183,19 @@ export default function HomePage() { socialLinks={[ { icon: Instagram, - href: "https://instagram.com/fincadonmanuel", - ariaLabel: "Follow us on Instagram", - }, + href: "https://instagram.com/fincadonmanuel", ariaLabel: "Follow us on Instagram"}, { icon: Facebook, - href: "https://facebook.com/fincadonmanuel", - ariaLabel: "Follow us on Facebook", - }, + href: "https://facebook.com/fincadonmanuel", ariaLabel: "Follow us on Facebook"}, { icon: Twitter, - href: "https://twitter.com/fincadonmanuel", - ariaLabel: "Follow us on Twitter", - }, + href: "https://twitter.com/fincadonmanuel", ariaLabel: "Follow us on Twitter"}, { icon: Mail, - href: "mailto:hello@fincadonmanuel.com", - ariaLabel: "Email us", - }, + href: "mailto:hello@fincadonmanuel.com", ariaLabel: "Email us"}, ]} />
); -} \ No newline at end of file +}