diff --git a/src/app/page.tsx b/src/app/page.tsx
index 7eba304..bbb272a 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -2,14 +2,14 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
-import ContactCenter from '@/components/sections/contact/ContactCenter';
-import FooterSimple from '@/components/sections/footer/FooterSimple';
+import ContactCTA from '@/components/sections/contact/ContactCTA';
+import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
-import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
+import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import TextAbout from '@/components/sections/about/TextAbout';
-import { Clock, Flame, Leaf, MapPin, Utensils } from "lucide-react";
+import { Clock, Flame, Leaf, MapPin, Utensils, MessageSquare } from "lucide-react";
export default function LandingPage() {
return (
@@ -29,111 +29,37 @@ export default function LandingPage() {
@@ -142,12 +68,7 @@ export default function LandingPage() {
@@ -158,42 +79,10 @@ export default function LandingPage() {
gridVariant="two-columns-alternating-heights"
useInvertedBackground={false}
products={[
- {
- id: "p1",
- name: "Street Tacos",
- price: "$12.00",
- imageSrc: "http://img.b2bpic.net/free-photo/pre-prepared-food-showcasing-ready-eat-delicious-meals-go_23-2151246116.jpg",
- },
- {
- id: "p2",
- name: "Classic Burrito",
- price: "$14.00",
- imageSrc: "http://img.b2bpic.net/free-photo/wraps-vegetables-plate_23-2148381339.jpg",
- },
- {
- id: "p3",
- name: "Chicken Quesadilla",
- price: "$11.00",
- imageSrc: "http://img.b2bpic.net/free-photo/lavash-stuffed-with-mixed-ingredients-finely-roasted_114579-1768.jpg",
- },
- {
- id: "p4",
- name: "Guacamole & Chips",
- price: "$8.00",
- imageSrc: "http://img.b2bpic.net/free-photo/fresh-homemade-hot-guacamole-sauce-with-nachos-top-view_114579-7077.jpg",
- },
- {
- id: "p5",
- name: "Sizzling Fajitas",
- price: "$18.00",
- imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-kebab-with-ketchup_23-2148685540.jpg",
- },
- {
- id: "p6",
- name: "Cinnamon Churros",
- price: "$6.00",
- imageSrc: "http://img.b2bpic.net/free-photo/crispy-churros-with-rich-chocolate-dipping-sauce_84443-81964.jpg",
- },
+ { id: "p1", name: "Street Tacos", price: "$12.00", imageSrc: "http://img.b2bpic.net/free-photo/pre-prepared-food-showcasing-ready-eat-delicious-meals-go_23-2151246116.jpg" },
+ { id: "p2", name: "Classic Burrito", price: "$14.00", imageSrc: "http://img.b2bpic.net/free-photo/wraps-vegetables-plate_23-2148381339.jpg" },
+ { id: "p3", name: "Chicken Quesadilla", price: "$11.00", imageSrc: "http://img.b2bpic.net/free-photo/lavash-stuffed-with-mixed-ingredients-finely-roasted_114579-1768.jpg" },
+ { id: "p4", name: "Guacamole & Chips", price: "$8.00", imageSrc: "http://img.b2bpic.net/free-photo/fresh-homemade-hot-guacamole-sauce-with-nachos-top-view_114579-7077.jpg" },
]}
title="Fresh & Authentic Favorites"
description="Handcrafted Mexican classics, made with love for your busy schedule."
@@ -201,106 +90,34 @@ export default function LandingPage() {
-
-