3 Commits

Author SHA1 Message Date
fadfc23be5 Update src/app/page.tsx 2026-04-27 19:19:02 +00:00
ea288f8d87 Update src/app/page.tsx 2026-04-27 19:14:39 +00:00
966458784c Merge version_2 into main
Merge version_2 into main
2026-04-27 19:12:47 +00:00

View File

@@ -3,7 +3,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import AboutMetric from '@/components/sections/about/AboutMetric';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FooterBase from '@/components/sections/footer/FooterBase';
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
@@ -98,21 +98,17 @@ export default function LandingPage() {
useInvertedBackground={true}
products={[
{
id: "p1", name: "Mexican Burger", price: "Fresh", imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-burger-arrangement_23-2148868198.jpg"},
id: "p1", name: "Mexican Burger", price: "From $8.99", imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-burger-arrangement_23-2148868198.jpg"},
{
id: "p2", name: "Premium Raw Beef", price: "By Weight", imageSrc: "http://img.b2bpic.net/free-photo/ham-counter-market_1398-2259.jpg"},
id: "p2", name: "Premium Raw Beef", price: "From $5.99/lb", imageSrc: "http://img.b2bpic.net/free-photo/ham-counter-market_1398-2259.jpg"},
{
id: "p3", name: "Marinated Meats", price: "Ready-to-Cook", imageSrc: "http://img.b2bpic.net/free-photo/vertical-view-red-meat-wooden-tray-garlic-green-ketchup-chopped-pepper-oil-bottle-dark-background_140725-141515.jpg"},
id: "p3", name: "Marinated Meats", price: "From $7.99/lb", imageSrc: "http://img.b2bpic.net/free-photo/vertical-view-red-meat-wooden-tray-garlic-green-ketchup-chopped-pepper-oil-bottle-dark-background_140725-141515.jpg"},
{
id: "p4", name: "Garden Fresh Produce", price: "Local", imageSrc: "http://img.b2bpic.net/free-photo/different-colorful-fresh-vegetables-concrete-surface_114579-5395.jpg"},
id: "p4", name: "Garden Fresh Produce", price: "From $1.49/lb", imageSrc: "http://img.b2bpic.net/free-photo/different-colorful-fresh-vegetables-concrete-surface_114579-5395.jpg"},
{
id: "p5", name: "Traditional Sides", price: "Fresh", imageSrc: "http://img.b2bpic.net/free-photo/nam-phrik-kapi-with-chili-lemon-wooden-floor_1150-25820.jpg"},
id: "p5", name: "Traditional Sides", price: "From $3.99", imageSrc: "http://img.b2bpic.net/free-photo/nam-phrik-kapi-with-chili-lemon-wooden-floor_1150-25820.jpg"},
{
id: "p6", name: "Everyday Staples", price: "Daily", imageSrc: "http://img.b2bpic.net/free-photo/terrace-restaurant-with-assembled-chairs-tables-small-tree-front-entrance-nikiti-greece_1268-16660.jpg"},
]}
buttons={[
{ text: "View Menu", href: "#" },
{ text: "Order for Pickup", href: "#contact" }
id: "p6", name: "Everyday Staples", price: "From $2.49", imageSrc: "http://img.b2bpic.net/free-photo/terrace-restaurant-with-assembled-chairs-tables-small-tree-front-entrance-nikiti-greece_1268-16660.jpg"},
]}
title="Popular Market Selections"
description="Discover our hand-picked selection of fresh daily essentials and local favorites, crafted with care for your table."
@@ -177,17 +173,16 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={true}
background={{
variant: "sparkles-gradient"}}
tag="Get in Touch"
title="Visit D&E Foodcraft Center"
description="1605 N, 1605 US-83, Zapata, TX 78076. Call us at (956) 765-4365."
buttons={[
{
text: "Call Now", href: "tel:9567654365"},
<ContactSplitForm
title="Get in Touch"
description="Have questions or need to place a pickup order? Reach out and we will get back to you promptly."
inputs={[
{ name: "name", type: "text", placeholder: "Full Name", required: true },
{ name: "email", type: "email", placeholder: "Email Address", required: true }
]}
textarea={{ name: "message", placeholder: "Your message here..." }}
useInvertedBackground={true}
imageSrc="http://img.b2bpic.net/free-photo/contact-us-concept-with-wooden-blocks_23-2148679469.jpg"
/>
</div>
@@ -218,4 +213,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}