Files
0e02425c-9c23-4de2-a35e-cde…/src/app/page.tsx
2026-03-11 07:21:03 +00:00

276 lines
16 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
import AboutMetric from '@/components/sections/about/AboutMetric';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { TrendingUp, Zap, Settings, Target, Sparkles, Calculator, Mail, Facebook, Instagram, TikTok } from 'lucide-react';
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="compact"
sizing="largeSizeMediumTitles"
background="fluid"
cardStyle="glass-elevated"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="radial-glow"
headingFontWeight="light"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "home" },
{ name: "Solutions", id: "solutions" },
{ name: "Services", id: "services" },
{ name: "Process", id: "process" },
{ name: "Reviews", id: "testimonials" }
]}
brandName="GrowTables"
bottomLeftText="Los Angeles, USA"
bottomRightText="growtables@gmail.com"
topBarClassName="flex items-center justify-between px-6 py-4"
/>
</div>
<div id="hero" data-section="hero">
<HeroLogoBillboard
logoText="GrowTables"
description="Helping restaurant owners increase profit, reduce food and labor costs, improve kitchen systems, and run stronger restaurants. Smarter Kitchens. Better Profits."
buttons={[
{ text: "Get Free Restaurant Audit", href: "#contact" },
{ text: "Contact Us", href: "#cta" }
]}
buttonAnimation="slide-up"
background={{ variant: "sparkles-gradient" }}
imageSrc="http://img.b2bpic.net/free-photo/portrait-beautiful-happy-sous-chef-standing-restaurant-professional-kitchen-wearing-cooking-uniform-while-smiling-camera-young-adult-food-industry-worker-preparing-vegetables-meal_482257-43343.jpg"
imageAlt="Professional restaurant kitchen with chefs working"
frameStyle="card"
mediaAnimation="blur-reveal"
containerClassName="min-h-screen flex flex-col items-center justify-center"
logoClassName="text-6xl md:text-8xl font-light text-foreground mb-6"
descriptionClassName="text-lg md:text-2xl text-foreground/80 text-center max-w-3xl mb-12"
buttonContainerClassName="flex flex-col md:flex-row gap-4"
/>
</div>
<div id="problems" data-section="problems">
<FeatureCardSeven
title="Why Many Restaurants Struggle"
description="Understanding the operational and financial challenges that impact restaurant profitability and growth potential."
tag="Common Challenges"
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
animationType="blur-reveal"
features={[
{
id: 1,
title: "Poor Kitchen Systems", description: "Inefficient workflows and disorganized kitchen operations lead to wasted time, increased labor costs, and inconsistent food quality that impacts customer satisfaction.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-food-concept_23-2148478272.jpg?_wi=1"
},
{
id: 2,
title: "High Food Waste", description: "Inadequate inventory management and poor portion control result in significant food waste, directly reducing profit margins and increasing operational costs.", imageSrc: "http://img.b2bpic.net/free-vector/landing-page-template-business_23-2148229848.jpg?_wi=1"
},
{
id: 3,
title: "Uncontrolled Labor Costs", description: "Without proper scheduling systems and workflow optimization, labor expenses spiral out of control, becoming the largest expense line item for most restaurants.", imageSrc: "http://img.b2bpic.net/free-photo/male-chef-busy-restaurant-kitchen-uses-laptop-find-new-recipe-ideas_482257-121116.jpg?_wi=1"
},
{
id: 4,
title: "Inefficient Workflows", description: "Disorganized processes and poor communication between kitchen stations slow down service, increase errors, and create unnecessary stress on your team.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-food-concept_23-2148478272.jpg?_wi=2"
}
]}
/>
</div>
<div id="solutions" data-section="solutions">
<AboutMetric
title="Solutions for Modern Restaurant Owners"
useInvertedBackground={false}
metrics={[
{ icon: TrendingUp, label: "Restaurant Consulting", value: "Proven systems" },
{ icon: Zap, label: "Cost Control Systems", value: "Real savings" },
{ icon: Settings, label: "Kitchen Optimization", value: "Peak efficiency" },
{ icon: Target, label: "Growth Strategy", value: "Sustainable profit" }
]}
metricsAnimation="slide-up"
/>
</div>
<div id="services" data-section="services">
<FeatureCardSeven
title="How We Help Restaurants Grow"
description="Comprehensive consulting services designed to optimize every aspect of your restaurant operations and profitability."
tag="Services"
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
features={[
{
id: 1,
title: "Restaurant Profit Optimization", description: "Comprehensive analysis of your P&L, identifying inefficiencies and implementing systems that directly increase your bottom line and competitive advantage.", imageSrc: "http://img.b2bpic.net/free-vector/landing-page-template-business_23-2148229848.jpg?_wi=2"
},
{
id: 2,
title: "Kitchen Operations Improvement", description: "Streamline workflows, optimize station layouts, and implement proven systems that reduce waste, improve food quality, and increase kitchen efficiency.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-food-concept_23-2148478272.jpg?_wi=3"
},
{
id: 3,
title: "Food Cost Control Systems", description: "Implement inventory management, portion control, and supplier optimization strategies to dramatically reduce food costs while maintaining quality and portion standards.", imageSrc: "http://img.b2bpic.net/free-vector/landing-page-template-business_23-2148229848.jpg?_wi=3"
},
{
id: 4,
title: "Labor Cost Optimization", description: "Develop smart scheduling systems, improve team productivity, and implement labor management practices that control costs without compromising service quality.", imageSrc: "http://img.b2bpic.net/free-photo/male-chef-busy-restaurant-kitchen-uses-laptop-find-new-recipe-ideas_482257-121116.jpg?_wi=2"
}
]}
/>
</div>
<div id="process" data-section="process">
<MetricCardSeven
title="Our Simple 3 Step Process"
description="A proven methodology that delivers measurable results for restaurant owners looking to transform their operations and profitability."
textboxLayout="default"
useInvertedBackground={false}
animationType="blur-reveal"
metrics={[
{
id: "1", value: "Step 1", title: "Restaurant Audit", items: [
"Complete operational assessment", "Identify cost leakage points", "Analyze current systems", "Benchmark against industry standards"
]
},
{
id: "2", value: "Step 2", title: "Strategy & Systems", items: [
"Customized improvement plan", "System implementation roadmap", "Staff training protocols", "Performance metrics setup"
]
},
{
id: "3", value: "Step 3", title: "Growth & Profit", items: [
"Ongoing optimization support", "Continuous cost reduction", "Sustainable profit growth", "Long-term partnership success"
]
}
]}
/>
</div>
<div id="calculator" data-section="calculator">
<ContactCenter
tag="ROI Calculator"
tagIcon={Calculator}
title="Estimate Your Restaurant Profit Potential"
description="Discover how much profit your restaurant could gain by improving systems and controlling costs. Use this calculator to get a personalized estimate based on your restaurant's current performance."
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
inputPlaceholder="Enter your monthly revenue"
buttonText="Calculate Potential"
termsText="This is an estimate based on industry benchmarks. Actual results will vary based on your specific operations and implementation."
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTen
title="Trusted by Restaurant Owners"
description="Real results from restaurant owners who partnered with GrowTables to optimize their operations and increase profitability."
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{
id: "1", title: "Increased Profit Margins Significantly", quote: "GrowTables helped us improve kitchen efficiency and reduce waste. Our profit margins increased within months of implementing their systems. The ROI was exceptional.", name: "Maria Rodriguez", role: "Owner, Tres Hermanos Restaurant", imageSrc: "http://img.b2bpic.net/free-photo/portrait-fashionable-well-dressed-man-with-beard-posing-outdoors_1328-3268.jpg", imageAlt: "Maria Rodriguez"
},
{
id: "2", title: "Labor Costs Cut by 20%", quote: "The labor optimization strategies alone paid for the entire consulting engagement. We now have better scheduling, more efficient workflows, and happier staff.", name: "James Chen", role: "Manager, Shanghai Kitchen", imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-african-woman-student-resting-relaxing-sitting-cafe-smiling-drinking-coffee_176420-12323.jpg", imageAlt: "James Chen"
},
{
id: "3", title: "Food Costs Under Control", quote: "We've reduced food waste by nearly 30% through better inventory management and portion controls. The systems they implemented are now part of our daily operations.", name: "Sarah Williams", role: "Owner, The Golden Fork Cafe", imageSrc: "http://img.b2bpic.net/free-photo/bald-man-with-beard-wearing-business-clothes-glasses-puffing-cheeks-with-funny-face-mouth-inflated-with-air-crazy-expression_839833-2502.jpg", imageAlt: "Sarah Williams"
},
{
id: "4", title: "Professional Support That Delivers Results", quote: "The team at GrowTables truly understands restaurant operations. They didn't just identify problems—they provided practical, implementable solutions that work.", name: "Michael Thompson", role: "Operator, Thompson's Fine Dining", imageSrc: "http://img.b2bpic.net/free-photo/welcome-our-restaurant_1098-15702.jpg", imageAlt: "Michael Thompson"
}
]}
/>
</div>
<div id="cta" data-section="cta">
<ContactCenter
tag="Ready to Grow"
tagIcon={Sparkles}
title="Let's Improve Your Restaurant"
description="If you want to increase profit, fix operational issues, or build stronger systems in your restaurant, GrowTables is ready to help. Request your free restaurant audit today and start your transformation."
background={{ variant: "gradient-bars" }}
useInvertedBackground={false}
inputPlaceholder="Enter your email"
buttonText="Request Free Audit"
termsText="We'll send you a personalized audit proposal. No obligation, no pressure—just honest insights on how to grow your restaurant."
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
tag="Get In Touch"
tagIcon={Mail}
title="Request Your Free Restaurant Audit"
description="Fill out the form below and our team will reach out to discuss your restaurant's unique challenges and opportunities. We'll provide personalized recommendations to help you grow."
background={{ variant: "cell-wave" }}
useInvertedBackground={false}
inputPlaceholder="your@email.com"
buttonText="Get Free Audit"
termsText="We respect your privacy. We'll only use your information to prepare your personalized restaurant audit."
mediaPosition="right"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="GrowTables"
columns={[
{
items: [
{ label: "Home", href: "#home" },
{ label: "Solutions", href: "#solutions" },
{ label: "Services", href: "#services" }
]
},
{
items: [
{ label: "Process", href: "#process" },
{ label: "Reviews", href: "#testimonials" },
{ label: "Contact", href: "#contact" }
]
},
{
items: [
{ label: "Email", href: "mailto:growtables@gmail.com" },
{ label: "Phone", href: "tel:+1234567890" },
{ label: "Location", href: "#" }
]
},
{
items: [
{ label: "Facebook", href: "https://www.facebook.com/Growtables" },
{ label: "Instagram", href: "https://www.instagram.com/growtables/" },
{ label: "TikTok", href: "https://www.tiktok.com/@growtables?_r=1&_t=ZS-94arQEaleUe" }
]
},
{
items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Cookies", href: "#" }
]
}
]}
/>
</div>
</ThemeProvider>
);
}