Files
c6addbee-d29b-423b-b781-2ef…/src/app/page.tsx
2026-03-26 23:54:54 +00:00

157 lines
6.2 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven';
import FooterBase from '@/components/sections/footer/FooterBase';
import HeroSplit from '@/components/sections/hero/HeroSplit';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home", id: "/"},
{
name: "About", id: "/about"},
{
name: "Departments", id: "/departments"},
{
name: "Weekly Deals", id: "/deals"},
{
name: "Contact", id: "/contact"},
]}
brandName="Milam's Market"
/>
</div>
<div id="hero" data-section="hero">
<HeroSplit
background={{
variant: "gradient-bars"}}
title="Freshness You Can Taste, Quality You Can Trust."
description="Welcome to Milam's Market, your neighborhood destination for farm-fresh produce, premium meats, and curated organic goods. Experience a calm, curated atmosphere where every detail matters."
buttons={[
{
text: "View Weekly Deals", href: "/deals"},
]}
imageSrc="http://img.b2bpic.net/free-photo/variety-organic-vegetables-supermarket_53876-138173.jpg?_wi=1"
mediaAnimation="blur-reveal"
/>
</div>
<div id="about" data-section="about">
<MetricSplitMediaAbout
useInvertedBackground={true}
title="A Better Way to Shop"
description="At Milam's, we believe that grocery shopping should be an experience, not a chore. With classical music, immaculate displays, and a team dedicated to your needs, we provide a premium boutique environment for your daily nourishment."
metrics={[
{
value: "15+ Years", title: "Serving Community"},
{
value: "100%", title: "Fresh Guarantee"},
]}
imageSrc="http://img.b2bpic.net/free-photo/man-looking-various-fresh-produce_482257-92814.jpg?_wi=1"
mediaAnimation="slide-up"
metricsAnimation="slide-up"
/>
</div>
<div id="features" data-section="features">
<FeatureCardTwentySeven
animationType="slide-up"
textboxLayout="split"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
features={[
{
id: "1", title: "Farm Fresh Produce", description: "Crisp vegetables and seasonal fruits sourced from local growers.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-box-with-green-vegetables_23-2148678872.jpg?_wi=1"},
{
id: "2", title: "Premium Butcher", description: "High-quality, ethically sourced meats prepared by expert butchers.", imageSrc: "http://img.b2bpic.net/free-photo/butcher-workwear-posing-with-two-axes-refrigerated-warehouse-midst-meat-carcasses_613910-21674.jpg?_wi=1"},
{
id: "3", title: "Sustainable Seafood", description: "Fresh catch brought in daily with a commitment to ocean health.", imageSrc: "http://img.b2bpic.net/free-photo/fresh-vegetables-blue-crates-shelf-with-price-label_23-2147916211.jpg?_wi=1"},
]}
title="Our Departments"
description="Explore our carefully curated selection, hand-picked for quality."
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwelve
useInvertedBackground={true}
testimonials={[
{
id: "1", name: "Sarah Miller", imageSrc: "http://img.b2bpic.net/free-photo/side-view-women-living-farmhouse_23-2150621704.jpg"},
{
id: "2", name: "James Chen", imageSrc: "http://img.b2bpic.net/free-photo/happy-multiracial-pair-choosing-goods-supermarket_23-2148216069.jpg"},
{
id: "3", name: "Elena Rodriguez", imageSrc: "http://img.b2bpic.net/free-photo/woman-with-food-package_23-2148869392.jpg"},
{
id: "4", name: "David Thompson", imageSrc: "http://img.b2bpic.net/free-photo/woman-carries-peppers-his-hands-woman-choosing-fresh-vegetables-measuring-grocery-store_1391-625.jpg"},
]}
cardTitle="What Our Neighbors Say"
cardTag="Loved by locals"
cardAnimation="blur-reveal"
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={false}
background={{
variant: "plain"}}
tag="Visit Us"
title="Experience Milam's Today"
description="Come see why we're the premier choice for local shoppers who value quality above all else."
buttons={[
{
text: "Get Directions", href: "/contact"},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Milam's Market", items: [
{
label: "About Us", href: "/about"},
{
label: "Departments", href: "/departments"},
],
},
{
title: "Shopping", items: [
{
label: "Weekly Deals", href: "/deals"},
{
label: "Contact", href: "/contact"},
],
},
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}