Files
86d92d8d-cf9b-4b0a-8ebf-968…/src/app/page.tsx
2026-03-11 20:20:16 +00:00

202 lines
9.7 KiB
TypeScript

"use client";
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll";
import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne";
import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow";
import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout";
import ContactText from "@/components/sections/contact/ContactText";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import { Heart, IceCream, Smile, Zap, Sparkles } from "lucide-react";
export default function HomePage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Menu", id: "/menu" },
{ name: "About", id: "/about" },
{ name: "Reviews", id: "/reviews" },
];
const footerColumns = [
{
title: "Navigate", items: [
{ label: "Home", href: "/" },
{ label: "Menu", href: "/menu" },
{ label: "About", href: "/about" },
],
},
{
title: "Connect", items: [
{ label: "Reviews", href: "/reviews" },
{ label: "Visit Us", href: "/visit" },
{ label: "Instagram", href: "https://instagram.com" },
],
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Contact", href: "/visit" },
],
},
];
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="reveal-blur"
borderRadius="pill"
contentWidth="small"
sizing="medium"
background="noise"
cardStyle="glass-depth"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="layered"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Sweet Retreat"
navItems={navItems}
button={{ text: "Visit Us", href: "/visit" }}
animateOnLoad={true}
/>
</div>
<div id="hero" data-section="hero">
<HeroBillboardScroll
title="Sweet Treats. Happy Memories."
description="Soft serve, sundaes, banana boats, and classic ice cream favorites right here in Waterville."
background={{ variant: "plain" }}
tag="Waterville's Favorite"
tagIcon={Sparkles}
tagAnimation="slide-up"
buttons={[
{ text: "View Menu", href: "/menu" },
{ text: "Visit Us Today", href: "/visit" },
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/appetizing-ice-cream-cone-female-hands_169016-43900.jpg"
imageAlt="Soft serve swirl cone with colorful sprinkles"
/>
</div>
<div id="social-proof" data-section="social-proof">
<TestimonialCardOne
title="Loved by the Community"
description="⭐⭐⭐⭐⭐ What our neighbors say about us"
testimonials={[
{
id: "1", name: "Julie Pauken", role: "Local Customer", company: "Waterville Resident", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/brunette-smiling-female-sits-outdoor-cafeteria-has-broad-smile-has-good-rest-has-satisfied-expression-rests-tropical-resort-country-cute-young-woman-rests-terrace-cafe-positiveness_273609-3010.jpg", imageAlt: "Julie Pauken"},
{
id: "2", name: "Rob Gasser", role: "Regular Visitor", company: "Waterville Community", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-young-man-close-up-street_1321-10.jpg", imageAlt: "Rob Gasser"},
{
id: "3", name: "Jay Mikalacki", role: "Local Favorite", company: "Waterville Native", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-man-wearing-blue-outfit-doing-holding-gesture_1298-431.jpg", imageAlt: "Jay Mikalacki"},
{
id: "4", name: "Melissa Barber", role: "Family Visitor", company: "Waterville Community", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiling-woman-laptop_23-2148471013.jpg", imageAlt: "Melissa Barber"},
]}
gridVariant="uniform-all-items-equal"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="featured-treats" data-section="featured-treats">
<ProductCardTwo
title="Our Most Popular Treats"
description="Customer favorites that keep people coming back for more"
tag="Featured"
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
products={[
{
id: "1", brand: "Sweet Retreat", name: "Soft Serve Swirl Cone", price: "$4.99", rating: 5,
reviewCount: "850+", imageSrc: "http://img.b2bpic.net/free-photo/waffle-cones-placed-row_23-2148102390.jpg", imageAlt: "Classic creamy soft serve with chocolate and vanilla swirl"},
{
id: "2", brand: "Sweet Retreat", name: "Banana Boat", price: "$7.99", rating: 5,
reviewCount: "720+", imageSrc: "http://img.b2bpic.net/free-photo/strawberries-cream-served-with-banana-puff-pastries_114579-13264.jpg", imageAlt: "Soft-serve twist on the classic banana split with toppings"},
{
id: "3", brand: "Sweet Retreat", name: "Buckeye Sundae", price: "$8.49", rating: 5,
reviewCount: "895+", imageSrc: "http://img.b2bpic.net/free-photo/delicious-creamy-chestnut-soup_114579-65560.jpg", imageAlt: "Local favorite with peanut butter, chocolate, and creamy ice cream"},
{
id: "4", brand: "Sweet Retreat", name: "Key Lime Pie Newberry", price: "$5.99", rating: 5,
reviewCount: "640+", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-yummy-popsicles-with-poppy-seeds-ice_23-2148763648.jpg", imageAlt: "Fan-favorite key lime pie ice cream flavor"},
]}
gridVariant="four-items-2x2-equal-grid"
animationType="slide-up"
buttons={[{ text: "See Full Menu", href: "/menu" }]}
/>
</div>
<div id="why-customers-love" data-section="why-customers-love">
<FeatureBorderGlow
title="Why Customers Love Sweet Retreat"
description="What makes us Waterville's favorite ice cream spot"
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
features={[
{
icon: Heart,
title: "Family-Owned", description: "A beloved local dessert shop serving Waterville for years with personal care and community values."},
{
icon: IceCream,
title: "Huge Variety", description: "Dozens of flavors, toppings, and combinations to create your perfect treat."},
{
icon: Smile,
title: "Friendly Staff", description: "A welcoming place for families, friends, and summer nights with warm, attentive service."},
{
icon: Zap,
title: "Great Value", description: "Big servings at prices everyone can enjoy, making memories affordable."},
]}
/>
</div>
<div id="local-favorite" data-section="local-favorite">
<MetricSplitMediaAbout
tag="Local Icon"
title="A Waterville Tradition"
description="Many customers say Sweet Retreat is an iconic stop in Waterville. Whether you're grabbing a cone after dinner or bringing the kids for a sundae, it's the perfect place to enjoy a sweet moment together."
useInvertedBackground={true}
metrics={[
{ value: "25+", title: "Years Serving Waterville" },
{ value: "1000s", title: "Happy Memories Created" },
]}
mediaAnimation="blur-reveal"
metricsAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/woman-kid-with-ice-creams-side-view_23-2149426708.jpg"
imageAlt="Family enjoying ice cream together"
/>
</div>
<div id="contact-cta" data-section="contact-cta">
<ContactText
text="Ready to taste the best ice cream in Waterville? Stop by today and make it a sweet memory!"
animationType="entrance-slide"
background={{ variant: "plain" }}
useInvertedBackground={false}
buttons={[
{ text: "Get Directions", href: "/visit" },
{ text: "Call Now", href: "tel:+1-555-0123" },
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
columns={footerColumns}
copyrightText="© 2024 Sweet Retreat. All rights reserved. Waterville's Favorite Ice Cream Spot."
/>
</div>
</ThemeProvider>
);
}