diff --git a/src/app/page.tsx b/src/app/page.tsx index 9db72d3..9b4666a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,16 +3,11 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import ContactSplit from '@/components/sections/contact/ContactSplit'; -import FaqSplitText from '@/components/sections/faq/FaqSplitText'; -import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow'; import FooterMedia from '@/components/sections/footer/FooterMedia'; import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import ProductCardThree from '@/components/sections/product/ProductCardThree'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; -import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; -import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; -import { Coffee, Leaf, Truck, MapPin, MessageCircle } from "lucide-react"; export default function LandingPage() { return ( @@ -62,6 +57,7 @@ export default function LandingPage() { gridVariant="four-items-2x2-equal-grid" title="Our Cafe Favorites" description="A curated selection of our most popular items." + useInvertedBackground={false} products={[ { id: "1", name: "Signature Latte", price: "$4.50", imageSrc: "http://img.b2bpic.net/free-photo/glass-coffee-latte-with-latte-art-table_140725-7815.jpg" }, { id: "2", name: "Fresh Croissant", price: "$3.50", imageSrc: "http://img.b2bpic.net/free-photo/croissant-with-coffee-breakfast-wooden-table_144627-23467.jpg" }, @@ -98,7 +94,8 @@ export default function LandingPage() { tag="Contact Us" title="Find Us & Connect" description="We are located in the heart of the city. Need help? Message us on WhatsApp or visit us!" - buttons={[{ text: "Chat on WhatsApp", href: "https://wa.me/1234567890" }]} + background={{ variant: "gradient-bars" }} + useInvertedBackground={false} imageSrc="http://img.b2bpic.net/free-photo/coffee-shop-interior-with-tables-chairs_1150-14256.jpg" /> @@ -106,6 +103,7 @@ export default function LandingPage() {