Update src/app/page.tsx
This commit is contained in:
228
src/app/page.tsx
228
src/app/page.tsx
@@ -10,7 +10,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
||||
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
||||
import { Facebook, Instagram, Utensils } from "lucide-react";
|
||||
import { Instagram, Facebook, Utensils } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -30,95 +30,40 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "menu",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Testimonials",
|
||||
id: "testimonials",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Menu", id: "menu" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Burlington House of Pizza"
|
||||
button={{ text: "Order Online", href: "#menu" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplit
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
background={{ variant: "radial-gradient" }}
|
||||
title="Fresh, Authentic Greek Style Pizza in Burlington"
|
||||
description="Family-owned and operated since day one. Experience the best cheese steaks, calzones, and our signature Greek-style pizza, made fresh daily with love."
|
||||
buttons={[
|
||||
{
|
||||
text: "Order Online",
|
||||
href: "#menu",
|
||||
},
|
||||
{
|
||||
text: "See Our Menu",
|
||||
href: "#menu",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Order Online", href: "#menu" }, { text: "See Our Menu", href: "#menu" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-delicious-pizza-cut-slices-with-pineapple_23-2148753782.jpg"
|
||||
imageAlt="Fresh Greek-style pizza at Burlington House of Pizza"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/azerbaijani-sac-ichi-with-pizza-green-salad_114579-3439.jpg",
|
||||
alt: "Customer 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/top-view-meat-pizza-slices-wood-cutting-board_140725-1466.jpg",
|
||||
alt: "Customer 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/soft-focus-homemade-traditional-pizzas-with-different-toppings-wooden-table_181624-55989.jpg",
|
||||
alt: "Customer 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/thick-pastry-pizza-with-mushrooms_140725-1286.jpg",
|
||||
alt: "Customer 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/high-angle-friends-having-lunch-restaurant_23-2150491780.jpg",
|
||||
alt: "Customer 5",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/azerbaijani-sac-ichi-with-pizza-green-salad_114579-3439.jpg", alt: "Customer 1" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/top-view-meat-pizza-slices-wood-cutting-board_140725-1466.jpg", alt: "Customer 2" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/soft-focus-homemade-traditional-pizzas-with-different-toppings-wooden-table_181624-55989.jpg", alt: "Customer 3" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/thick-pastry-pizza-with-mushrooms_140725-1286.jpg", alt: "Customer 4" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/high-angle-friends-having-lunch-restaurant_23-2150491780.jpg", alt: "Customer 5" },
|
||||
]}
|
||||
avatarText="Loved by 500+ local customers"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Fresh Ingredients",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Family Owned",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Greek Specialties",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Fast Delivery",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Open Daily",
|
||||
},
|
||||
{ type: "text", text: "Fresh Ingredients" },
|
||||
{ type: "text", text: "Family Owned" },
|
||||
{ type: "text", text: "Greek Specialties" },
|
||||
{ type: "text", text: "Fast Delivery" },
|
||||
{ type: "text", text: "Open Daily" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -143,60 +88,12 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
brand: "Signature",
|
||||
name: "Greek Style Pizza",
|
||||
price: "$18",
|
||||
rating: 5,
|
||||
reviewCount: "115",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-pizza-with-tomatoes-cutter_23-2148753761.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
brand: "Favorites",
|
||||
name: "Ham & Mushroom Calzone",
|
||||
price: "$15",
|
||||
rating: 5,
|
||||
reviewCount: "82",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-caesar-pizza-with-grilled-chicken-tomato-melted-cheese-parmesan-cheese-lettuce-board_141793-4783.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
brand: "Sides",
|
||||
name: "Traditional Greek Salad",
|
||||
price: "$12",
|
||||
rating: 4,
|
||||
reviewCount: "45",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-salad-with-feta-cheese-tomatoes-olives_23-2148700452.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
brand: "Subs",
|
||||
name: "Philly Cheese Steak",
|
||||
price: "$14",
|
||||
rating: 5,
|
||||
reviewCount: "67",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-slice-pepperoni-pizza-plate_23-2148765309.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
brand: "Wraps",
|
||||
name: "Chicken Caesar Wrap",
|
||||
price: "$11",
|
||||
rating: 5,
|
||||
reviewCount: "54",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pizza-slices-wooden-board-marble-background_114579-51064.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
brand: "Pizza",
|
||||
name: "Pepperoni & Cheese",
|
||||
price: "$17",
|
||||
rating: 5,
|
||||
reviewCount: "99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-vegan-salad-with-fresh-ingredients-plate_179666-47177.jpg",
|
||||
},
|
||||
{ id: "p1", brand: "Signature", name: "Greek Style Pizza", price: "$18", rating: 5, reviewCount: "115", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-pizza-with-tomatoes-cutter_23-2148753761.jpg" },
|
||||
{ id: "p2", brand: "Favorites", name: "Ham & Mushroom Calzone", price: "$15", rating: 5, reviewCount: "82", imageSrc: "http://img.b2bpic.net/free-photo/side-view-caesar-pizza-with-grilled-chicken-tomato-melted-cheese-parmesan-cheese-lettuce-board_141793-4783.jpg" },
|
||||
{ id: "p3", brand: "Sides", name: "Traditional Greek Salad", price: "$12", rating: 4, reviewCount: "45", imageSrc: "http://img.b2bpic.net/free-photo/top-view-salad-with-feta-cheese-tomatoes-olives_23-2148700452.jpg" },
|
||||
{ id: "p4", brand: "Subs", name: "Philly Cheese Steak", price: "$14", rating: 5, reviewCount: "67", imageSrc: "http://img.b2bpic.net/free-photo/top-view-slice-pepperoni-pizza-plate_23-2148765309.jpg" },
|
||||
{ id: "p5", brand: "Wraps", name: "Chicken Caesar Wrap", price: "$11", rating: 5, reviewCount: "54", imageSrc: "http://img.b2bpic.net/free-photo/pizza-slices-wooden-board-marble-background_114579-51064.jpg" },
|
||||
{ id: "p6", brand: "Pizza", name: "Pepperoni & Cheese", price: "$17", rating: 5, reviewCount: "99", imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-vegan-salad-with-fresh-ingredients-plate_179666-47177.jpg" },
|
||||
]}
|
||||
title="Our Signature Menu"
|
||||
description="Indulge in our most loved dishes, prepared fresh to order."
|
||||
@@ -207,31 +104,11 @@ export default function LandingPage() {
|
||||
<TestimonialCardTwelve
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Christina Grillakis",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-friends-having-lunch-restaurant_23-2150491780.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Louis Stamas",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-asian-man-friends-reunion_23-2149244687.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Michael Saliba",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-kids-eating-pizza_23-2148910415.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "Sarah Miller",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-indian-origin-having-fun_23-2150285278.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
name: "John Doe",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/team-young-colleagues-having-meeting-cafe_273609-16254.jpg",
|
||||
},
|
||||
{ id: "t1", name: "Christina Grillakis", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-friends-having-lunch-restaurant_23-2150491780.jpg" },
|
||||
{ id: "t2", name: "Louis Stamas", imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-asian-man-friends-reunion_23-2149244687.jpg" },
|
||||
{ id: "t3", name: "Michael Saliba", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-kids-eating-pizza_23-2148910415.jpg" },
|
||||
{ id: "t4", name: "Sarah Miller", imageSrc: "http://img.b2bpic.net/free-photo/person-indian-origin-having-fun_23-2150285278.jpg" },
|
||||
{ id: "t5", name: "John Doe", imageSrc: "http://img.b2bpic.net/free-photo/team-young-colleagues-having-meeting-cafe_273609-16254.jpg" },
|
||||
]}
|
||||
cardTitle="Loved by Burlington locals"
|
||||
cardTag="Reviews"
|
||||
@@ -244,21 +121,9 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "q1",
|
||||
title: "Do you offer delivery?",
|
||||
content: "Yes! We offer no-contact delivery to the Burlington area.",
|
||||
},
|
||||
{
|
||||
id: "q2",
|
||||
title: "Where are you located?",
|
||||
content: "We are located at 114 Cambridge St, Burlington, MA 01803.",
|
||||
},
|
||||
{
|
||||
id: "q3",
|
||||
title: "What are your hours?",
|
||||
content: "We open daily at 11 AM. Come visit us!",
|
||||
},
|
||||
{ id: "q1", title: "Do you offer delivery?", content: "Yes! We offer no-contact delivery to the Burlington area." },
|
||||
{ id: "q2", title: "Where are you located?", content: "We are located at 114 Cambridge St, Burlington, MA 01803." },
|
||||
{ id: "q3", title: "What are your hours?", content: "We open daily at 11 AM. Come visit us!" },
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Have questions about our hours or menu? Find your answers here."
|
||||
@@ -269,22 +134,11 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Contact Us"
|
||||
title="Hungry? Place your order today!"
|
||||
description="Give us a call at (781) 272-5839 or order online through our website."
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Now",
|
||||
href: "tel:7812725839",
|
||||
},
|
||||
{
|
||||
text: "Order Online",
|
||||
href: "#",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Call Now", href: "tel:7812725839" }, { text: "Order Online", href: "#" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -293,16 +147,8 @@ export default function LandingPage() {
|
||||
logoText="Burlington House of Pizza"
|
||||
copyrightText="© 2025 Burlington House of Pizza"
|
||||
socialLinks={[
|
||||
{
|
||||
icon: Instagram,
|
||||
href: "#",
|
||||
ariaLabel: "Instagram",
|
||||
},
|
||||
{
|
||||
icon: Facebook,
|
||||
href: "#",
|
||||
ariaLabel: "Facebook",
|
||||
},
|
||||
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
|
||||
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user