4 Commits

Author SHA1 Message Date
fcbd4c4979 Merge version_5 into main
Merge version_5 into main
2026-03-11 07:34:07 +00:00
49a592c65b Update src/app/page.tsx 2026-03-11 07:34:03 +00:00
4a5f76f18c Merge version_4 into main
Merge version_4 into main
2026-03-11 07:30:53 +00:00
bed18d3708 Merge version_4 into main
Merge version_4 into main
2026-03-11 07:30:01 +00:00

View File

@@ -6,11 +6,11 @@ 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 TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
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, Star } from 'lucide-react';
import { TrendingUp, Zap, Settings, Target, Sparkles, Mail, Facebook, Instagram, Quote } from 'lucide-react';
export default function LandingPage() {
return (
@@ -163,33 +163,31 @@ export default function LandingPage() {
/>
</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">
<TestimonialCardFifteen
testimonial="GrowTables helped us improve kitchen efficiency and reduce waste. Our profit margins increased within months of implementing their systems. The ROI was exceptional."
rating={5}
author="Maria Rodriguez, Owner - Tres Hermanos Restaurant"
avatars={[
{ src: "http://img.b2bpic.net/free-photo/portrait-fashionable-well-dressed-man-with-beard-posing-outdoors_1328-3268.jpg", alt: "Maria Rodriguez" },
{ src: "http://img.b2bpic.net/free-photo/young-beautiful-african-woman-student-resting-relaxing-sitting-cafe-smiling-drinking-coffee_176420-12323.jpg", alt: "James Chen" },
{ src: "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", alt: "Sarah Williams" },
{ src: "http://img.b2bpic.net/free-photo/welcome-our-restaurant_1098-15702.jpg", alt: "Michael Thompson" }
<TestimonialCardThirteen
testimonials={[
{
id: "1", name: "Maria Rodriguez", handle: "Owner - Tres Hermanos Restaurant", testimonial: "GrowTables helped us improve kitchen efficiency and reduce waste. Our profit margins increased within months of implementing their systems. The ROI was exceptional.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-fashionable-well-dressed-man-with-beard-posing-outdoors_1328-3268.jpg", imageAlt: "Maria Rodriguez"
},
{
id: "2", name: "James Chen", handle: "Chef - Downtown Bistro", testimonial: "The kitchen optimization recommendations saved us thousands monthly. The team is more efficient, and customers notice the quality improvement.", rating: 5,
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", name: "Sarah Williams", handle: "Manager - Coastal Kitchen", testimonial: "Their labor cost optimization strategies transformed how we schedule and manage staff. We've seen a significant impact on our bottom line.", rating: 5,
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", name: "Michael Thompson", handle: "Owner - Mountain Top Restaurant", testimonial: "Professional, thorough, and results-driven. GrowTables delivered exactly what they promised. Highly recommend to any restaurant looking to improve profitability.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/welcome-our-restaurant_1098-15702.jpg", imageAlt: "Michael Thompson"
}
]}
ratingAnimation="slide-up"
avatarsAnimation="slide-up"
showRating={true}
title="What Our Clients Say"
description="Hear from restaurant owners who have experienced real growth and profitability improvements."
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
/>
</div>
@@ -268,4 +266,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}