diff --git a/src/app/page.tsx b/src/app/page.tsx
index 0c64201..f29ddbd 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -2,15 +2,15 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
-import ContactCenter from '@/components/sections/contact/ContactCenter';
-import FaqDouble from '@/components/sections/faq/FaqDouble';
+import ContactText from '@/components/sections/contact/ContactText';
+import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
-import FooterCard from '@/components/sections/footer/FooterCard';
+import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import HeroLogo from '@/components/sections/hero/HeroLogo';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
-import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
-import TextAbout from '@/components/sections/about/TextAbout';
+import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
+import AboutMetric from '@/components/sections/about/AboutMetric';
export default function LandingPage() {
return (
@@ -30,16 +30,11 @@ export default function LandingPage() {
@@ -49,19 +44,21 @@ export default function LandingPage() {
-
@@ -72,12 +69,9 @@ export default function LandingPage() {
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
features={[
- {
- title: "Premium Meat Counter", description: "Expertly cut meats for your family table.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-male-butcher-cutting-meat-dark-surface_179666-44099.jpg"},
- {
- title: "Farm Fresh Produce", description: "Locally sourced fruits and vegetables daily.", imageSrc: "http://img.b2bpic.net/free-photo/collection-homegrown-vegetables-flowers-after-harvest-fro_181624-58049.jpg"},
- {
- title: "Daily Baked Goods", description: "Fresh pastries and bread baked with care.", imageSrc: "http://img.b2bpic.net/free-photo/loaves-bread-with-price-tag_23-2147975216.jpg"},
+ { title: "Premium Meat Counter", description: "Expertly cut meats for your family table.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-male-butcher-cutting-meat-dark-surface_179666-44099.jpg" },
+ { title: "Farm Fresh Produce", description: "Locally sourced fruits and vegetables daily.", imageSrc: "http://img.b2bpic.net/free-photo/collection-homegrown-vegetables-flowers-after-harvest-fro_181624-58049.jpg" },
+ { title: "Daily Baked Goods", description: "Fresh pastries and bread baked with care.", imageSrc: "http://img.b2bpic.net/free-photo/loaves-bread-with-price-tag_23-2147975216.jpg" },
]}
title="Freshness You Can Trust"
description="We take pride in offering the highest quality fresh foods in town."
@@ -91,18 +85,9 @@ export default function LandingPage() {
gridVariant="three-columns-all-equal-width"
useInvertedBackground={true}
products={[
- {
- id: "p1", name: "Prime Steak Cuts", price: "", variant: "Freshly butchered", imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-red-meat-wooden-cutting-board-garlic-green-pepper-fork-knife-dark-background_140725-140809.jpg"},
- {
- id: "p2", name: "Organic Honeycrisp Apples", price: "", variant: "Locally grown", imageSrc: "http://img.b2bpic.net/free-photo/fresh-red-apple-basket-wooden-table_53876-96847.jpg"},
- {
- id: "p3", name: "Farm Fresh Large Eggs", price: "", variant: "Free range", imageSrc: "http://img.b2bpic.net/free-photo/eggs-halved-onion-mushroom-lemon-eggs-gray-kitchen-worktop_23-2148062419.jpg"},
- {
- id: "p4", name: "Artisanal Sourdough Loaf", price: "", variant: "Freshly baked", imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-hold-tray-mini-pizzas-with-sausages_141793-12546.jpg"},
- {
- id: "p5", name: "Fresh Harvest Carrots", price: "", variant: "Crisp & sweet", imageSrc: "http://img.b2bpic.net/free-photo/vegetables_23-2148023504.jpg"},
- {
- id: "p6", name: "Canned Essentials", price: "", variant: "Pantry stock", imageSrc: "http://img.b2bpic.net/free-photo/top-view-shopping-carts-with-delicious-veggies_23-2148290749.jpg"},
+ { id: "p1", name: "Prime Steak Cuts", price: "", variant: "Freshly butchered", imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-red-meat-wooden-cutting-board-garlic-green-pepper-fork-knife-dark-background_140725-140809.jpg" },
+ { id: "p2", name: "Organic Honeycrisp Apples", price: "", variant: "Locally grown", imageSrc: "http://img.b2bpic.net/free-photo/fresh-red-apple-basket-wooden-table_53876-96847.jpg" },
+ { id: "p3", name: "Farm Fresh Large Eggs", price: "", variant: "Free range", imageSrc: "http://img.b2bpic.net/free-photo/eggs-halved-onion-mushroom-lemon-eggs-gray-kitchen-worktop_23-2148062419.jpg" },
]}
title="Today's Favorites"
description="Explore our curated selection of high-quality essentials."
@@ -110,21 +95,14 @@ export default function LandingPage() {
-
-
-
);
-}
\ No newline at end of file
+}