diff --git a/src/app/page.tsx b/src/app/page.tsx
index 616518a..700f50e 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -2,14 +2,12 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
-import ContactSplit from '@/components/sections/contact/ContactSplit';
-import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
-import FooterBase from '@/components/sections/footer/FooterBase';
+import ContactCTA from '@/components/sections/contact/ContactCTA';
+import FooterMedia from '@/components/sections/footer/FooterMedia';
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
-import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
-import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
+import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
export default function LandingPage() {
@@ -30,22 +28,11 @@ export default function LandingPage() {
@@ -53,26 +40,14 @@ export default function LandingPage() {
@@ -83,60 +58,10 @@ export default function LandingPage() {
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={false}
products={[
- {
- id: "p1",
- brand: "CCC Signature",
- name: "Hazelnut Coffee",
- price: "₹180",
- rating: 5,
- reviewCount: "120",
- imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-beer-wheat-seeds-cup_23-2148726871.jpg",
- },
- {
- id: "p2",
- brand: "CCC Signature",
- name: "Irish Cream Coffee",
- price: "₹190",
- rating: 5,
- reviewCount: "85",
- imageSrc: "http://img.b2bpic.net/free-photo/traditional-irish-cream-coffee-liqueur-with-ice-wooden-table_123827-29678.jpg",
- },
- {
- id: "p3",
- brand: "CCC Classic",
- name: "Classic Cold Coffee",
- price: "₹160",
- rating: 4,
- reviewCount: "210",
- imageSrc: "http://img.b2bpic.net/free-photo/plastic-glass-iced-coffee-with-cake-table-coffee-shop_1150-8932.jpg",
- },
- {
- id: "p4",
- brand: "CCC Authentic",
- name: "Chikmagalur Filter",
- price: "₹90",
- rating: 5,
- reviewCount: "500",
- imageSrc: "http://img.b2bpic.net/free-photo/cup-tea-teacup-pastry-wooden-plate_114579-72195.jpg",
- },
- {
- id: "p5",
- brand: "Snacks",
- name: "Vada Pav",
- price: "₹70",
- rating: 4,
- reviewCount: "340",
- imageSrc: "http://img.b2bpic.net/free-photo/woman-takes-grilled-salmon-with-homemade-potato-eggplant-bell-pepper-mushroom-tomato-side-view_141793-3242.jpg",
- },
- {
- id: "p6",
- brand: "Snacks",
- name: "Veg Nuggets",
- price: "₹120",
- rating: 4,
- reviewCount: "150",
- imageSrc: "http://img.b2bpic.net/free-photo/top-view-different-snacks-popcorn-rusks-cips-dark-surface_140725-90983.jpg",
- },
+ { id: "p1", brand: "CCC Signature", name: "Hazelnut Coffee", price: "₹180", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-beer-wheat-seeds-cup_23-2148726871.jpg" },
+ { id: "p2", brand: "CCC Signature", name: "Irish Cream Coffee", price: "₹190", rating: 5, reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/traditional-irish-cream-coffee-liqueur-with-ice-wooden-table_123827-29678.jpg" },
+ { id: "p3", brand: "CCC Classic", name: "Classic Cold Coffee", price: "₹160", rating: 4, reviewCount: "210", imageSrc: "http://img.b2bpic.net/plastic-glass-iced-coffee-with-cake-table-coffee-shop_1150-8932.jpg" },
+ { id: "p4", brand: "CCC Authentic", name: "Chikmagalur Filter", price: "₹90", rating: 5, reviewCount: "500", imageSrc: "http://img.b2bpic.net/free-photo/cup-tea-teacup-pastry-wooden-plate_114579-72195.jpg" }
]}
title="Signature Menu"
description="Hand-picked offerings for the true coffee connoisseur."
@@ -147,191 +72,47 @@ export default function LandingPage() {
-
-
-