7 Commits

Author SHA1 Message Date
42f23b8fa0 Update src/app/order-now/page.tsx 2026-03-19 14:06:28 +00:00
f56b26d8fa Update src/app/order-now/page.tsx 2026-03-19 14:06:03 +00:00
5495578c4d Merge version_24 into main
Merge version_24 into main
2026-03-19 02:51:44 +00:00
4e662cb231 Update src/app/page.tsx 2026-03-19 02:51:40 +00:00
684c38217b Update src/app/contact/page.tsx 2026-03-19 02:51:39 +00:00
fbf51f0ca4 Merge version_23 into main
Merge version_23 into main
2026-03-19 02:36:39 +00:00
af96eeb04a Merge version_23 into main
Merge version_23 into main
2026-03-19 02:36:13 +00:00
3 changed files with 37 additions and 74 deletions

View File

@@ -19,8 +19,7 @@ export default function ContactPage() {
const footerColumns = [ const footerColumns = [
{ {
title: "Quick Links", title: "Quick Links", items: [
items: [
{ label: "Home", href: "/" }, { label: "Home", href: "/" },
{ label: "Menu", href: "/menu" }, { label: "Menu", href: "/menu" },
{ label: "Gallery", href: "/gallery" }, { label: "Gallery", href: "/gallery" },
@@ -28,8 +27,7 @@ export default function ContactPage() {
], ],
}, },
{ {
title: "Order & Contact", title: "Order & Contact", items: [
items: [
{ label: "Order Online", href: "/order" }, { label: "Order Online", href: "/order" },
{ label: "Call Us", href: "tel:2397850423" }, { label: "Call Us", href: "tel:2397850423" },
{ label: "Locations & Hours", href: "/locations" }, { label: "Locations & Hours", href: "/locations" },
@@ -37,8 +35,7 @@ export default function ContactPage() {
], ],
}, },
{ {
title: "Connect With Us", title: "Connect With Us", items: [
items: [
{ label: "Facebook", href: "https://facebook.com/caribbeanflair" }, { label: "Facebook", href: "https://facebook.com/caribbeanflair" },
{ label: "About Us", href: "/about" }, { label: "About Us", href: "/about" },
{ label: "Privacy Policy", href: "#privacy" }, { label: "Privacy Policy", href: "#privacy" },
@@ -46,8 +43,7 @@ export default function ContactPage() {
], ],
}, },
{ {
title: "Located In", title: "Located In", items: [
items: [
{ label: "801 Leeland Heights Blvd W", href: "#map" }, { label: "801 Leeland Heights Blvd W", href: "#map" },
{ label: "Lehigh Acres, FL 33936", href: "#map" }, { label: "Lehigh Acres, FL 33936", href: "#map" },
{ label: "Open Until 9PM", href: "/locations" }, { label: "Open Until 9PM", href: "/locations" },
@@ -74,9 +70,7 @@ export default function ContactPage() {
brandName="Caribbean Flair" brandName="Caribbean Flair"
navItems={navItems} navItems={navItems}
button={{ button={{
text: "Order Now", text: "Order Now", href: "/order"}}
href: "/order",
}}
/> />
</div> </div>
@@ -89,13 +83,9 @@ export default function ContactPage() {
tagAnimation="slide-up" tagAnimation="slide-up"
buttons={[ buttons={[
{ {
text: "Call (239) 785-0423", text: "Call (239) 785-0423", href: "tel:2397850423"},
href: "tel:2397850423",
},
{ {
text: "Visit Us Today", text: "Visit Us Today", href: "/order"},
href: "/order",
},
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
textboxLayout="default" textboxLayout="default"
@@ -103,21 +93,15 @@ export default function ContactPage() {
useInvertedBackground={false} useInvertedBackground={false}
features={[ features={[
{ {
id: "phone-contact", id: "phone-contact", title: "Call Us Directly", description: "Speak with our team for custom orders, catering, or any questions about our authentic Caribbean menu.", media: {
title: "Call Us Directly", imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-man-getting-coffee_23-2149663609.jpg?_wi=4"},
description: "Speak with our team for custom orders, catering, or any questions about our authentic Caribbean menu.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-man-getting-coffee_23-2149663609.jpg?_wi=4",
},
items: [ items: [
{ {
icon: Zap, icon: Zap,
text: "(239) 785-0423", text: "(239) 785-0423"},
},
{ {
icon: Heart, icon: Heart,
text: "Available until 9PM", text: "Available until 9PM"},
},
], ],
reverse: false, reverse: false,
}, },
@@ -134,13 +118,9 @@ export default function ContactPage() {
tagAnimation="slide-up" tagAnimation="slide-up"
buttons={[ buttons={[
{ {
text: "Order Online Now", text: "Order Online Now", href: "/order"},
href: "/order",
},
{ {
text: "View Full Menu", text: "View Full Menu", href: "/menu"},
href: "/menu",
},
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
textboxLayout="default" textboxLayout="default"
@@ -148,21 +128,15 @@ export default function ContactPage() {
useInvertedBackground={true} useInvertedBackground={true}
features={[ features={[
{ {
id: "location-details", id: "location-details", title: "Lehigh Acres, Florida", description: "Experience premium Caribbean fusion at our convenient Lehigh Acres location. Fresh-grilled authentic island cuisine made with love and expertise.", media: {
title: "Lehigh Acres, Florida", imageSrc: "http://img.b2bpic.net/free-photo/chef-cooking-kitchen-while-wearing-professional-attire_23-2151208291.jpg?_wi=8"},
description: "Experience premium Caribbean fusion at our convenient Lehigh Acres location. Fresh-grilled authentic island cuisine made with love and expertise.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/chef-cooking-kitchen-while-wearing-professional-attire_23-2151208291.jpg?_wi=8",
},
items: [ items: [
{ {
icon: Zap, icon: Zap,
text: "801 Leeland Heights Blvd W", text: "801 Leeland Heights Blvd W"},
},
{ {
icon: Heart, icon: Heart,
text: "Daily Service Until 9PM", text: "Daily Service Until 9PM"},
},
], ],
reverse: true, reverse: true,
}, },
@@ -181,4 +155,4 @@ export default function ContactPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -4,7 +4,7 @@ import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import HeroSplit from "@/components/sections/hero/HeroSplit"; import HeroSplit from "@/components/sections/hero/HeroSplit";
import FeatureCardTwentySeven from "@/components/sections/feature/FeatureCardTwentySeven"; import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import FooterMedia from "@/components/sections/footer/FooterMedia"; import FooterMedia from "@/components/sections/footer/FooterMedia";
import { import {
Award, Award,
@@ -64,6 +64,9 @@ export default function OrderNowPage() {
}, },
]; ];
const deliveryServices = [
"Uber Eats", "DoorDash", "Grubhub", "Other Services"];
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="bounce-effect" defaultButtonVariant="bounce-effect"
@@ -164,7 +167,7 @@ export default function OrderNowPage() {
}, },
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afn0reuidgadYlHif4J2xHlmq8/uploaded-1773887611478-094w00ok.jpg?_wi=2" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afn0reuidgadYlHif4J2xHlmq8/uploaded-1773929131328-mphgod14.jpg?_wi=1"
imageAlt="Caribbean Flair delivery service" imageAlt="Caribbean Flair delivery service"
mediaAnimation="opacity" mediaAnimation="opacity"
imagePosition="right" imagePosition="right"
@@ -174,49 +177,35 @@ export default function OrderNowPage() {
{/* Delivery Options Section */} {/* Delivery Options Section */}
<div id="delivery-options" data-section="delivery-options"> <div id="delivery-options" data-section="delivery-options">
<FeatureCardTwentySeven <SocialProofOne
logos={[
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afn0reuidgadYlHif4J2xHlmq8/uploaded-1773929131328-elg8yd2v.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afn0reuidgadYlHif4J2xHlmq8/uploaded-1773929131329-fajlvnzq.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afn0reuidgadYlHif4J2xHlmq8/uploaded-1773929131329-6odz7kv6.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afn0reuidgadYlHif4J2xHlmq8/uploaded-1773929131329-m4fwr7dr.png"]}
names={deliveryServices}
title="Choose Your Delivery Service" title="Choose Your Delivery Service"
description="Select your preferred delivery partner to bring Caribbean Flair straight to your table." description="Select your preferred delivery partner to bring Caribbean Flair straight to your table. Fast, reliable service with real-time tracking."
tag="Multiple Options" tag="Multiple Options"
tagIcon={Truck} tagIcon={Truck}
tagAnimation="slide-up" tagAnimation="slide-up"
textboxLayout="default" textboxLayout="default"
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
useInvertedBackground={false} useInvertedBackground={false}
features={[ speed={40}
showCard={true}
buttons={[
{ {
id: "doordash", title: "DoorDash", descriptions: [ text: "View Menu", href: "/#signature-dishes"
"Fast delivery with real-time tracking", "Easy app-based ordering", "Contactless delivery available"
],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afn0reuidgadYlHif4J2xHlmq8/uploaded-1773887611478-8nakpzaa.jpg?_wi=2", imageAlt: "DoorDash delivery service logo"
}, },
{ {
id: "ubereats", title: "Uber Eats", descriptions: [ text: "Call Us", href: "tel:2397850423"
"Seamless ordering experience", "Fast and reliable delivery", "Track your order in real-time"
],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afn0reuidgadYlHif4J2xHlmq8/uploaded-1773887611478-i3ll7ifz.jpg?_wi=2", imageAlt: "Uber Eats delivery service logo"
},
{
id: "grubhub", title: "Grubhub", descriptions: [
"Wide reach and convenient ordering", "Loyalty rewards program", "Quick and professional delivery"
],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afn0reuidgadYlHif4J2xHlmq8/uploaded-1773887611478-60e6tsue.jpg?_wi=2", imageAlt: "Grubhub delivery service logo"
},
{
id: "instacart", title: "Instacart", descriptions: [
"Fresh food delivery expertise", "Same-day delivery available", "Easy scheduling options"
],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afn0reuidgadYlHif4J2xHlmq8/uploaded-1773887611478-gby1l988.jpg?_wi=2", imageAlt: "Instacart delivery service logo"
}, },
]} ]}
buttonAnimation="slide-up"
/> />
</div> </div>
{/* Footer with Local Map Info and Social Links */} {/* Footer with Local Map Info and Social Links */}
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterMedia <FooterMedia
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afn0reuidgadYlHif4J2xHlmq8/uploaded-1773887611478-094w00ok.jpg?_wi=3" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afn0reuidgadYlHif4J2xHlmq8/uploaded-1773929131328-mphgod14.jpg?_wi=2"
imageAlt="Caribbean Flair Island Jerk Grill Trailer" imageAlt="Caribbean Flair Island Jerk Grill Trailer"
logoText="Caribbean Flair" logoText="Caribbean Flair"
copyrightText="© 2026 Caribbean Flair Island Jerk Grill | Black & Women-Owned | Lehigh Acres, FL" copyrightText="© 2026 Caribbean Flair Island Jerk Grill | Black & Women-Owned | Lehigh Acres, FL"
@@ -225,4 +214,4 @@ export default function OrderNowPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -71,7 +71,7 @@ export default function HomePage() {
{ label: "Order Online", href: "/order-now" }, { label: "Order Online", href: "/order-now" },
{ label: "Call Us", href: "tel:2397850423" }, { label: "Call Us", href: "tel:2397850423" },
{ label: "Locations & Hours", href: "#footer" }, { label: "Locations & Hours", href: "#footer" },
{ label: "Contact", href: "#footer" }, { label: "Contact", href: "/contact" },
], ],
}, },
{ {