5 Commits

Author SHA1 Message Date
ed65f7d401 Merge version_4 into main
Merge version_4 into main
2026-05-09 21:49:51 +00:00
52dfdba546 Update src/app/page.tsx 2026-05-09 21:49:48 +00:00
117e4f63cd Merge version_3 into main
Merge version_3 into main
2026-05-09 21:48:34 +00:00
772ff90de1 Update src/app/page.tsx 2026-05-09 21:48:28 +00:00
35047875f6 Merge version_2 into main
Merge version_2 into main
2026-05-09 21:47:40 +00:00

View File

@@ -12,7 +12,7 @@ import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import { DollarSign, Flame, MessageSquare, Star } from "lucide-react";
import { DollarSign, Flame, MessageSquare, Star, Phone } from "lucide-react";
export default function LandingPage() {
return (
@@ -51,7 +51,10 @@ export default function LandingPage() {
variant: "gradient-bars"}}
title="Philadelphias Finest Cheesesteaks & Hoagies"
description="Flavorful, juicy ribeye, fresh soft rolls, and portions that hit the spot every single time. Discover why locals call Bobs the best in town."
buttons={[{ text: "View Menu", href: "#menu" }]}
buttons={[
{ text: "Order Now", href: "#menu" },
{ text: "Call Us: 445-223-4891", href: "tel:4452234891" }
]}
testimonials={[
{
name: "Sarah Jenkins", handle: "@sarah_eats", testimonial: "Blew my other spots out of the water! Generous size, fresh steak.", rating: 5,
@@ -263,4 +266,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}