diff --git a/src/app/page.tsx b/src/app/page.tsx index 796fc9e..3f07543 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,14 +3,14 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import AboutMetric from '@/components/sections/about/AboutMetric'; -import ContactText from '@/components/sections/contact/ContactText'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; import FaqDouble from '@/components/sections/faq/FaqDouble'; -import FooterCard from '@/components/sections/footer/FooterCard'; -import HeroCentered from '@/components/sections/hero/HeroCentered'; -import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import ProductCardThree from '@/components/sections/product/ProductCardThree'; -import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; -import { CheckCircle, Facebook, Instagram, Sparkles, Star } from "lucide-react"; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; +import { CheckCircle, Sparkles, Star } from "lucide-react"; export default function LandingPage() { return ( @@ -20,99 +20,35 @@ export default function LandingPage() { borderRadius="soft" contentWidth="small" sizing="mediumLargeSizeLargeTitles" - background="blurBottom" - cardStyle="gradient-bordered" + background="none" + cardStyle="outline" primaryButtonStyle="flat" secondaryButtonStyle="glass" - headingFontWeight="semibold" + headingFontWeight="normal" >
-
@@ -121,51 +57,24 @@ export default function LandingPage() { useInvertedBackground={false} title="Craftsmanship at its Core" metrics={[ - { - icon: Sparkles, - label: "Unique Pieces", - value: "150+", - }, - { - icon: CheckCircle, - label: "Happy Customers", - value: "500+", - }, - { - icon: Star, - label: "Five Star Ratings", - value: "4.9", - }, + { icon: Sparkles, label: "Unique Pieces", value: "150+" }, + { icon: CheckCircle, label: "Happy Customers", value: "500+" }, + { icon: Star, label: "Five Star Ratings", value: "4.9" }, ]} - metricsAnimation="slide-up" + metricsAnimation="opacity" />
-
-
-