diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bb58d69..9fbb4be 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1265,4 +1265,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} diff --git a/src/app/page.tsx b/src/app/page.tsx index c6b5979..a9133a8 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 NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; @@ -10,6 +10,7 @@ import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import FeatureCardThree from '@/components/sections/feature/FeatureCardThree'; import { Sparkles, Award, Zap, CheckCircle, Star, Mail } from "lucide-react"; export default function LandingPage() { @@ -20,7 +21,7 @@ export default function LandingPage() { borderRadius="rounded" contentWidth="smallMedium" sizing="mediumSizeLargeTitles" - background="aurora" + background="floatingGradient" cardStyle="soft-shadow" primaryButtonStyle="inset-glow" secondaryButtonStyle="layered" @@ -46,7 +47,7 @@ export default function LandingPage() { description="Discover curated luxury timepieces that transcend trends. Each watch is a masterpiece of craftsmanship and engineering, selected for collectors who appreciate the finer details." tag="Premium Collection" tagIcon={Sparkles} - background={{variant: "aurora"}} + background={{variant: "sparkles-gradient"}} buttons={[ {text: "Explore Collections", href: "collections"}, {text: "Learn More", href: "about"} @@ -89,6 +90,31 @@ export default function LandingPage() { /> +
+ +
+
); -} \ No newline at end of file +}