diff --git a/src/app/page.tsx b/src/app/page.tsx index 794eaf9..d7540e4 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,7 +1,7 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; import HeroLogoBillboard from "@/components/sections/hero/HeroLogoBillboard"; import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout"; import ProductCardOne from "@/components/sections/product/ProductCardOne"; @@ -9,8 +9,8 @@ import FeatureBento from "@/components/sections/feature/FeatureBento"; import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen"; import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia"; import ContactCenter from "@/components/sections/contact/ContactCenter"; -import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; -import { Mail, Leaf, Droplet, Sprout, Wind } from "lucide-react"; +import FooterCard from "@/components/sections/footer/FooterCard"; +import { Mail, Leaf, Droplet, Sprout, Wind, Instagram, Twitter, Facebook } from "lucide-react"; export default function SkincareTemplatePage() { return ( @@ -27,7 +27,7 @@ export default function SkincareTemplatePage() { headingFontWeight="extrabold" >
@@ -75,15 +76,9 @@ export default function SkincareTemplatePage() { title="Our Signature Collection" description="Discover our carefully curated skincare essentials designed to nourish and revitalize your skin. Worldwide shipping available." products={[ - { - id: "1", name: "Hydrating Moisturizer", price: "$68", imageSrc: "/templates/skincare/image2.webp", imageAlt: "Hydrating Moisturizer bottle" - }, - { - id: "2", name: "Radiance Serum", price: "$85", imageSrc: "/templates/skincare/image3.webp", imageAlt: "Radiance Serum bottle" - }, - { - id: "3", name: "Purifying Face Mask", price: "$52", imageSrc: "/templates/skincare/image1.webp", imageAlt: "Purifying Face Mask jar" - } + { id: "1", name: "Hydrating Moisturizer", price: "$68", imageSrc: "/templates/skincare/image2.webp", imageAlt: "Hydrating Moisturizer bottle" }, + { id: "2", name: "Radiance Serum", price: "$85", imageSrc: "/templates/skincare/image3.webp", imageAlt: "Radiance Serum bottle" }, + { id: "3", name: "Purifying Face Mask", price: "$52", imageSrc: "/templates/skincare/image1.webp", imageAlt: "Purifying Face Mask jar" } ]} gridVariant="three-columns-all-equal-width" animationType="slide-up" @@ -97,20 +92,9 @@ export default function SkincareTemplatePage() { title="Why Choose Luminé" description="Scientifically-formulated skincare products that deliver visible results with natural, sustainable ingredients. Available for worldwide shipping." features={[ - { - title: "Worldwide Shipping", description: "Fast and reliable delivery to over 150 countries worldwide", bentoComponent: "globe" - }, - { - title: "Clinically Proven", description: "Dermatologist-tested and proven effective in clinical trials", bentoComponent: "line-chart" - }, - { - title: "Sustainable", description: "Eco-conscious packaging and ethical sourcing practices", bentoComponent: "orbiting-icons", centerIcon: Leaf, - items: [ - { icon: Droplet, ring: 1 }, - { icon: Sprout, ring: 2 }, - { icon: Wind, ring: 3 } - ] - } + { title: "Worldwide Shipping", description: "Fast and reliable delivery to over 150 countries worldwide", bentoComponent: "globe" }, + { title: "Clinically Proven", description: "Dermatologist-tested and proven effective in clinical trials", bentoComponent: "line-chart" }, + { title: "Sustainable", description: "Eco-conscious packaging and ethical sourcing practices", bentoComponent: "orbiting-icons", centerIcon: Leaf, items: [{ icon: Droplet, ring: 1 }, { icon: Sprout, ring: 2 }, { icon: Wind, ring: 3 }] } ]} animationType="slide-up" textboxLayout="default" @@ -123,12 +107,7 @@ export default function SkincareTemplatePage() { testimonial="Luminé skincare has completely transformed my routine. My skin feels more radiant and healthy than ever before. I love that it's made with natural ingredients I can trust. Plus, worldwide shipping made it so easy to get my products delivered wherever I am." rating={5} author="Sarah Mitchell, Beauty Editor" - avatars={[ - { src: "/templates/skincare/image5.avif", alt: "Sarah Mitchell" }, - { src: "/templates/skincare/image6.avif", alt: "Customer testimonial" }, - { src: "/templates/skincare/image7.avif", alt: "Customer testimonial" }, - { src: "/templates/skincare/image8.avif", alt: "Customer testimonial" } - ]} + avatars={[{ src: "/templates/skincare/image5.avif", alt: "Sarah Mitchell" }, { src: "/templates/skincare/image6.avif", alt: "Customer" }, { src: "/templates/skincare/image7.avif", alt: "Customer" }, { src: "/templates/skincare/image8.avif", alt: "Customer" }]} ratingAnimation="slide-up" avatarsAnimation="slide-up" useInvertedBackground={false} @@ -139,22 +118,9 @@ export default function SkincareTemplatePage() {