Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-04-09 02:08:37 +00:00

View File

@@ -9,6 +9,8 @@ import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
import MediaAbout from '@/components/sections/about/MediaAbout';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import { Star } from "lucide-react";
export default function LandingPage() {
return (
@@ -28,22 +30,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "hero",
},
{
name: "About",
id: "about",
},
{
name: "Menu",
id: "menu",
},
{
name: "Contact",
id: "contact",
},
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Menu", id: "menu" },
{ name: "Reviews", id: "reviews" },
{ name: "Contact", id: "contact" },
]}
brandName="Dreamette Atlantic Beach"
/>
@@ -51,30 +42,14 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroBillboardGallery
background={{
variant: "gradient-bars",
}}
background={{ variant: "gradient-bars" }}
title="Jacksonvilles Favorite Soft Serve"
description="Serving Atlantic Beach with creamy goodness since day one. Stop by Dreamette Atlantic Beach for a treat that makes every day sweeter."
buttons={[
{
text: "Order Online",
href: "https://order.online/store/27810737?pickup=true&redirected=true",
},
]}
buttons={[{ text: "Order Online", href: "https://order.online/store/27810737?pickup=true&redirected=true" }]}
mediaItems={[
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C607vd01rKmHhZ4Vexo75mhusy/uploaded-1775699195498-55ezwh3d.jpg?_wi=1",
imageAlt: "Dreamette exterior",
},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C607vd01rKmHhZ4Vexo75mhusy/uploaded-1775699195499-7ao82q6e.jpg?_wi=1",
imageAlt: "Dreamette shop interior",
},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C607vd01rKmHhZ4Vexo75mhusy/uploaded-1775699195498-55ezwh3d.jpg?_wi=2",
imageAlt: "Ice cream treat",
},
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C607vd01rKmHhZ4Vexo75mhusy/uploaded-1775699195498-55ezwh3d.jpg?_wi=1", imageAlt: "Dreamette exterior" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C607vd01rKmHhZ4Vexo75mhusy/uploaded-1775699195499-7ao82q6e.jpg?_wi=1", imageAlt: "Dreamette shop interior" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C607vd01rKmHhZ4Vexo75mhusy/uploaded-1775699195498-55ezwh3d.jpg?_wi=2", imageAlt: "Ice cream treat" },
]}
mediaAnimation="blur-reveal"
/>
@@ -95,33 +70,29 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
features={[
{
tag: "Soft Serve",
title: "Classic Soft Serve",
subtitle: "Creamy & Smooth",
description: "The timeless vanilla and chocolate soft serve Jacksonville knows and loves.",
imageSrc: "http://img.b2bpic.net/free-photo/glass-with-ice-cream-cones_23-2148421964.jpg",
},
{
tag: "Atmosphere",
title: "Local Favorite",
subtitle: "Community Focused",
description: "Bringing the Atlantic Beach community together one scoop at a time.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-man-with-ice-cream_23-2149066130.jpg",
},
{
tag: "Ordering",
title: "Easy Online Order",
subtitle: "Skip the Line",
description: "Order through DoorDash and have your treats delivered or ready for pickup.",
imageSrc: "http://img.b2bpic.net/free-photo/ginger-woman-yellow-hair-dressing-with-smile-is-chatting-smartphone-holding-blue-ice-cream_197531-23326.jpg",
},
{ tag: "Soft Serve", title: "Classic Soft Serve", subtitle: "Creamy & Smooth", description: "The timeless vanilla and chocolate soft serve Jacksonville knows and loves.", imageSrc: "http://img.b2bpic.net/free-photo/glass-with-ice-cream-cones_23-2148421964.jpg" },
{ tag: "Atmosphere", title: "Local Favorite", subtitle: "Community Focused", description: "Bringing the Atlantic Beach community together one scoop at a time.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-man-with-ice-cream_23-2149066130.jpg" },
{ tag: "Ordering", title: "Easy Online Order", subtitle: "Skip the Line", description: "Order through DoorDash and have your treats delivered or ready for pickup.", imageSrc: "http://img.b2bpic.net/free-photo/ginger-woman-yellow-hair-dressing-with-smile-is-chatting-smartphone-holding-blue-ice-cream_197531-23326.jpg" },
]}
title="Our Treats"
description="Hand-dipped, swirled to perfection, and always fresh."
/>
</div>
<div id="reviews" data-section="reviews">
<TestimonialCardTwo
title="What Our Fans Are Saying"
description="See why everyone loves Dreamette Atlantic Beach."
animationType="blur-reveal"
textboxLayout="default"
testimonials={[
{ id: "1", name: "Sarah J.", role: "Local Resident", testimonial: "The best soft serve in Jax! Always consistent and the staff is so friendly.", icon: Star },
{ id: "2", name: "Mike D.", role: "Beach Goer", testimonial: "A staple in our beach routine. Can't beat the classic vanilla cone.", icon: Star },
{ id: "3", name: "Emily R.", role: "Happy Customer", testimonial: "Quick service and delicious treats. Definitely recommend!", icon: Star },
]}
/>
</div>
<div id="feature" data-section="feature">
<FeatureCardTwentyOne
useInvertedBackground={false}
@@ -131,21 +102,9 @@ export default function LandingPage() {
imageAlt="Dreamette team serving ice cream"
mediaAnimation="opacity"
accordionItems={[
{
id: "q1",
title: "What kind of ice cream do you serve?",
content: "We specialize in authentic, creamy soft serve, including the classic vanilla, chocolate, and our famous daily swirl flavors.",
},
{
id: "q2",
title: "Do you have vegan options?",
content: "Please check our daily specials or ask our friendly staff about currently available dairy-free or vegan options at our Atlantic Beach location.",
},
{
id: "q3",
title: "Can I order for a large group?",
content: "Absolutely! Reach out to us via Facebook or stop by the shop to inquire about catering options for your next event.",
},
{ id: "q1", title: "What kind of ice cream do you serve?", content: "We specialize in authentic, creamy soft serve, including the classic vanilla, chocolate, and our famous daily swirl flavors." },
{ id: "q2", title: "Do you have vegan options?", content: "Please check our daily specials or ask our friendly staff about currently available dairy-free or vegan options at our Atlantic Beach location." },
{ id: "q3", title: "Can I order for a large group?", content: "Absolutely! Reach out to us via Facebook or stop by the shop to inquire about catering options for your next event." },
]}
/>
</div>
@@ -153,18 +112,11 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
tag="Visit Us"
title="Find Us in Atlantic Beach"
description="61 Sailfish Dr E, Atlantic Beach, FL 32233. Join us on social media for daily specials and updates."
buttons={[
{
text: "Follow on Facebook",
href: "https://www.facebook.com/dreametteatlanticbch?mibextid=LQQJ4d",
},
]}
buttons={[{ text: "Follow on Facebook", href: "https://www.facebook.com/dreametteatlanticbch?mibextid=LQQJ4d" }]}
/>
</div>
@@ -172,32 +124,8 @@ export default function LandingPage() {
<FooterBaseCard
logoText="Dreamette Atlantic Beach"
columns={[
{
title: "Quick Links",
items: [
{
label: "Order Now",
href: "https://order.online/store/27810737?pickup=true&redirected=true",
},
{
label: "Facebook",
href: "https://www.facebook.com/dreametteatlanticbch?mibextid=LQQJ4d",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
],
},
{ title: "Quick Links", items: [{ label: "Order Now", href: "https://order.online/store/27810737?pickup=true&redirected=true" }, { label: "Facebook", href: "https://www.facebook.com/dreametteatlanticbch?mibextid=LQQJ4d" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
]}
copyrightText="© 2025 Dreamette Atlantic Beach. All rights reserved."
/>
@@ -205,4 +133,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}