Merge version_1 into main #1
@@ -26,24 +26,13 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="West End Restaurant"
|
||||
button={{ text: "Order Online", href: "/menu" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -51,12 +40,7 @@ export default function LandingPage() {
|
||||
<TextAbout
|
||||
useInvertedBackground={false}
|
||||
title="A Decatur Tradition Since Forever"
|
||||
buttons={[
|
||||
{
|
||||
text: "Visit Us",
|
||||
href: "/contact",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Visit Us", href: "/contact" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -65,21 +49,9 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Our Impact"
|
||||
metrics={[
|
||||
{
|
||||
icon: Utensils,
|
||||
label: "Meals Served",
|
||||
value: "1M+",
|
||||
},
|
||||
{
|
||||
icon: Coffee,
|
||||
label: "Cups Poured",
|
||||
value: "500k+",
|
||||
},
|
||||
{
|
||||
icon: Users,
|
||||
label: "Happy Guests",
|
||||
value: "200k+",
|
||||
},
|
||||
{ icon: Utensils, label: "Meals Served", value: "1M+" },
|
||||
{ icon: Coffee, label: "Cups Poured", value: "500k+" },
|
||||
{ icon: Users, label: "Happy Guests", value: "200k+" },
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
@@ -87,38 +59,7 @@ export default function LandingPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Links",
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Visit Us",
|
||||
items: [
|
||||
{
|
||||
label: "702 W Monroe St, Decatur, IN 46733",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={[{ title: "Links", items: [{ label: "Home", href: "/" }, { label: "Menu", href: "/menu" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }, { title: "Visit Us", items: [{ label: "702 W Monroe St, Decatur, IN 46733", href: "#" }] }]}
|
||||
logoText="West End Restaurant"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -25,40 +25,22 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="West End Restaurant"
|
||||
button={{ text: "Order Online", href: "/menu" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-body" data-section="contact-body">
|
||||
<ContactText
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
background={{ variant: "radial-gradient" }}
|
||||
text="Visit us at 702 W Monroe St, Decatur, IN 46733 or call (260) 724-2938."
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Now",
|
||||
href: "tel:2607242938",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Call Now", href: "tel:2607242938" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -67,56 +49,14 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Message Us"
|
||||
description="Send us your feedback or book a reservation."
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Your Name",
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Your Email",
|
||||
},
|
||||
]}
|
||||
inputs={[{ name: "name", type: "text", placeholder: "Your Name" }, { name: "email", type: "email", placeholder: "Your Email" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/table-set-dinning-table_1339-3438.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Links",
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Visit Us",
|
||||
items: [
|
||||
{
|
||||
label: "702 W Monroe St, Decatur, IN 46733",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={[{ title: "Links", items: [{ label: "Home", href: "/" }, { label: "Menu", href: "/menu" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }, { title: "Visit Us", items: [{ label: "702 W Monroe St, Decatur, IN 46733", href: "#" }] }]}
|
||||
logoText="West End Restaurant"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -25,24 +25,13 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="West End Restaurant"
|
||||
button={{ text: "Order Online", href: "/menu" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -52,62 +41,7 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
brand: "Diner",
|
||||
name: "Classic Breakfast",
|
||||
price: "$12.00",
|
||||
rating: 5,
|
||||
reviewCount: "120",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/assortment-delicious-breakfast-meal_23-2148878808.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
brand: "Diner",
|
||||
name: "House Burger",
|
||||
price: "$14.50",
|
||||
rating: 5,
|
||||
reviewCount: "205",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hamburger-french-fries_74190-7627.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
brand: "Diner",
|
||||
name: "Hand-spun Shake",
|
||||
price: "$6.00",
|
||||
rating: 5,
|
||||
reviewCount: "88",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pancakes-with-banana-chocolate-topping-wooden-board-with-delicious-coffee_114579-91012.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
brand: "Diner",
|
||||
name: "Big BLT",
|
||||
price: "$11.00",
|
||||
rating: 4,
|
||||
reviewCount: "67",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-arrangement-with-sauce-bottles-burger_23-2148314160.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
brand: "Diner",
|
||||
name: "Chicken Dinner",
|
||||
price: "$16.00",
|
||||
rating: 5,
|
||||
reviewCount: "45",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/egg-bacon-breakfast_1150-11061.jpg",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
brand: "Diner",
|
||||
name: "Onion Rings",
|
||||
price: "$5.50",
|
||||
rating: 5,
|
||||
reviewCount: "112",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-burger-with-flag-high-angle_23-2149897345.jpg",
|
||||
},
|
||||
]}
|
||||
products={[{ id: "1", brand: "Diner", name: "Classic Breakfast", price: "$12.00", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/assortment-delicious-breakfast-meal_23-2148878808.jpg" }, { id: "2", brand: "Diner", name: "House Burger", price: "$14.50", rating: 5, reviewCount: "205", imageSrc: "http://img.b2bpic.net/free-photo/hamburger-french-fries_74190-7627.jpg" }, { id: "3", brand: "Diner", name: "Hand-spun Shake", price: "$6.00", rating: 5, reviewCount: "88", imageSrc: "http://img.b2bpic.net/free-photo/pancakes-with-banana-chocolate-topping-wooden-board-with-delicious-coffee_114579-91012.jpg" }, { id: "4", brand: "Diner", name: "Big BLT", price: "$11.00", rating: 4, reviewCount: "67", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-arrangement-with-sauce-bottles-burger_23-2148314160.jpg" }, { id: "5", brand: "Diner", name: "Chicken Dinner", price: "$16.00", rating: 5, reviewCount: "45", imageSrc: "http://img.b2bpic.net/free-photo/egg-bacon-breakfast_1150-11061.jpg" }, { id: "6", brand: "Diner", name: "Onion Rings", price: "$5.50", rating: 5, reviewCount: "112", imageSrc: "http://img.b2bpic.net/free-photo/delicious-burger-with-flag-high-angle_23-2149897345.jpg" }]}
|
||||
title="Our Diner Menu"
|
||||
description="Classic comfort food cooked to perfection."
|
||||
/>
|
||||
@@ -121,59 +55,13 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Weekly Specials"
|
||||
description="New items added every week."
|
||||
products={[
|
||||
{
|
||||
id: "s1",
|
||||
name: "Chef Salad",
|
||||
price: "$10.00",
|
||||
variant: "Light",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vegetable-salad-with-bread-boiled-eggs-pan_1150-22682.jpg",
|
||||
},
|
||||
{
|
||||
id: "s2",
|
||||
name: "Pancake Stack",
|
||||
price: "$9.00",
|
||||
variant: "Sweet",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/eggs-bacon-waffles_74190-1246.jpg",
|
||||
},
|
||||
]}
|
||||
products={[{ id: "s1", name: "Chef Salad", price: "$10.00", variant: "Light", imageSrc: "http://img.b2bpic.net/free-photo/vegetable-salad-with-bread-boiled-eggs-pan_1150-22682.jpg" }, { id: "s2", name: "Pancake Stack", price: "$9.00", variant: "Sweet", imageSrc: "http://img.b2bpic.net/free-photo/eggs-bacon-waffles_74190-1246.jpg" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Links",
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Visit Us",
|
||||
items: [
|
||||
{
|
||||
label: "702 W Monroe St, Decatur, IN 46733",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={[{ title: "Links", items: [{ label: "Home", href: "/" }, { label: "Menu", href: "/menu" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }, { title: "Visit Us", items: [{ label: "702 W Monroe St, Decatur, IN 46733", href: "#" }] }]}
|
||||
logoText="West End Restaurant"
|
||||
/>
|
||||
</div>
|
||||
|
||||
282
src/app/page.tsx
282
src/app/page.tsx
@@ -28,133 +28,27 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="West End Restaurant"
|
||||
button={{ text: "Order Online", href: "/menu" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitDoubleCarousel
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="West End Restaurant – Classic American Comfort Food"
|
||||
description="Family-friendly, locally loved diner serving breakfast, lunch, and dinner in the heart of Decatur."
|
||||
leftCarouselItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-vintage-objects_23-2150244548.jpg",
|
||||
imageAlt: "Diner Booth",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/half-fried-egg-toast-salad-bacon-gray-plate-with-lemon-mint-tea-cup-white-background_23-2148067049.jpg",
|
||||
imageAlt: "Breakfast",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-burger-with-usa-flag-fries_23-2149897355.jpg",
|
||||
imageAlt: "Burger",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/anime-coffee-shop-illustration_23-2151764659.jpg",
|
||||
imageAlt: "Coffee",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-brunette-woman-trench-coat-red-dress-stylish-beret-waves-hand-greeting-smiles-widely-sits-street-cafe_197531-29300.jpg",
|
||||
imageAlt: "Diner 2",
|
||||
},
|
||||
]}
|
||||
rightCarouselItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/american-hamburger_23-2147783565.jpg",
|
||||
imageAlt: "Burger",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/leaves-mug-cloth-stump_23-2147885995.jpg",
|
||||
imageAlt: "Coffee",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pan-with-egg-vegetables_23-2148454748.jpg",
|
||||
imageAlt: "Breakfast",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tall-bar-stool-wooden-background_181624-28697.jpg",
|
||||
imageAlt: "Diner",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-man-eating-fast-food_23-2150347936.jpg",
|
||||
imageAlt: "Burger 3",
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Now (260) 724-2938",
|
||||
href: "tel:2607242938",
|
||||
},
|
||||
{
|
||||
text: "View Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
]}
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/table-empty-white-seat-background_1203-4740.jpg",
|
||||
alt: "Customer 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/pretty-happy-blonde-hipster-woman-eating-tasty-raspberry-dessert-cake-sitting-cute-bakery-enjoy-her-meal-sweet-breakfast-diet-nutrition-concept_291049-2281.jpg",
|
||||
alt: "Customer 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/stylish-smiling-woman-colorful-outfit-retro-vintage-50-s-cafe-dancing-wearing-jacket-blue-skirt-red-shirt-sunglasses-having-fun-cheerful-mood_285396-10388.jpg",
|
||||
alt: "Customer 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/happy-friends-sitting-cafe_23-2148422400.jpg",
|
||||
alt: "Customer 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/woman-colorful-outfit-retro-vintage-50-s-cafe-dancing-wearing-jacket-blue-skirt-red-shirt-sunglasses-having-fun-cheerful-mood_285396-10312.jpg",
|
||||
alt: "Customer 5",
|
||||
},
|
||||
]}
|
||||
leftCarouselItems={[{ imageSrc: "http://img.b2bpic.net/free-photo/still-life-vintage-objects_23-2150244548.jpg", imageAlt: "Diner Booth" }, { imageSrc: "http://img.b2bpic.net/free-photo/half-fried-egg-toast-salad-bacon-gray-plate-with-lemon-mint-tea-cup-white-background_23-2148067049.jpg", imageAlt: "Breakfast" }, { imageSrc: "http://img.b2bpic.net/free-photo/delicious-burger-with-usa-flag-fries_23-2149897355.jpg", imageAlt: "Burger" }, { imageSrc: "http://img.b2bpic.net/free-photo/anime-coffee-shop-illustration_23-2151764659.jpg", imageAlt: "Coffee" }, { imageSrc: "http://img.b2bpic.net/free-photo/happy-brunette-woman-trench-coat-red-dress-stylish-beret-waves-hand-greeting-smiles-widely-sits-street-cafe_197531-29300.jpg", imageAlt: "Diner 2" }]}
|
||||
rightCarouselItems={[{ imageSrc: "http://img.b2bpic.net/free-photo/american-hamburger_23-2147783565.jpg", imageAlt: "Burger" }, { imageSrc: "http://img.b2bpic.net/free-photo/leaves-mug-cloth-stump_23-2147885995.jpg", imageAlt: "Coffee" }, { imageSrc: "http://img.b2bpic.net/free-photo/pan-with-egg-vegetables_23-2148454748.jpg", imageAlt: "Breakfast" }, { imageSrc: "http://img.b2bpic.net/free-photo/tall-bar-stool-wooden-background_181624-28697.jpg", imageAlt: "Diner" }, { imageSrc: "http://img.b2bpic.net/free-photo/high-angle-man-eating-fast-food_23-2150347936.jpg", imageAlt: "Burger 3" }]}
|
||||
buttons={[{ text: "Call Now (260) 724-2938", href: "tel:2607242938" }, { text: "View Menu", href: "/menu" }]}
|
||||
avatars={[{ src: "http://img.b2bpic.net/free-photo/table-empty-white-seat-background_1203-4740.jpg", alt: "Customer 1" }, { src: "http://img.b2bpic.net/free-photo/pretty-happy-blonde-hipster-woman-eating-tasty-raspberry-dessert-cake-sitting-cute-bakery-enjoy-her-meal-sweet-breakfast-diet-nutrition-concept_291049-2281.jpg", alt: "Customer 2" }, { src: "http://img.b2bpic.net/free-photo/stylish-smiling-woman-colorful-outfit-retro-vintage-50-s-cafe-dancing-wearing-jacket-blue-skirt-red-shirt-sunglasses-having-fun-cheerful-mood_285396-10388.jpg", alt: "Customer 3" }, { src: "http://img.b2bpic.net/free-photo/happy-friends-sitting-cafe_23-2148422400.jpg", alt: "Customer 4" }, { src: "http://img.b2bpic.net/free-photo/woman-colorful-outfit-retro-vintage-50-s-cafe-dancing-wearing-jacket-blue-skirt-red-shirt-sunglasses-having-fun-cheerful-mood_285396-10312.jpg", alt: "Customer 5" }]}
|
||||
avatarText="Loved by locals since 1955"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Classic Atmosphere",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Fresh Ingredients",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Family Owned",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Decatur Tradition",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Open Daily",
|
||||
},
|
||||
]}
|
||||
marqueeItems={[{ type: "text", text: "Classic Atmosphere" }, { type: "text", text: "Fresh Ingredients" }, { type: "text", text: "Family Owned" }, { type: "text", text: "Decatur Tradition" }, { type: "text", text: "Open Daily" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -163,32 +57,7 @@ export default function LandingPage() {
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Breakfast All Day",
|
||||
descriptions: [
|
||||
"Pancakes, waffles, and our famous biscuits and gravy available whenever you are.",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-delicious-meals-arrangement_23-2149179613.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Burger & Sandwiches",
|
||||
descriptions: [
|
||||
"Fresh ground beef patties and hand-cut sandwiches made to order.",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-mini-beef-burger-served-with-ketchup-mayonnaise_140725-4986.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Coffee & Shakes",
|
||||
descriptions: [
|
||||
"Bottomless fresh-brewed coffee and hand-spun milkshakes just like you remember.",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/back-view-playful-group-friends_23-2148281597.jpg",
|
||||
},
|
||||
]}
|
||||
features={[{ id: "1", title: "Breakfast All Day", descriptions: ["Pancakes, waffles, and our famous biscuits and gravy available whenever you are."], imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-delicious-meals-arrangement_23-2149179613.jpg" }, { id: "2", title: "Burger & Sandwiches", descriptions: ["Fresh ground beef patties and hand-cut sandwiches made to order."], imageSrc: "http://img.b2bpic.net/free-photo/close-up-mini-beef-burger-served-with-ketchup-mayonnaise_140725-4986.jpg" }, { id: "3", title: "Coffee & Shakes", descriptions: ["Bottomless fresh-brewed coffee and hand-spun milkshakes just like you remember."], imageSrc: "http://img.b2bpic.net/free-photo/back-view-playful-group-friends_23-2148281597.jpg" }]}
|
||||
title="Diner Classics You'll Love"
|
||||
description="Our menu is packed with comfort food favorites made fresh daily."
|
||||
/>
|
||||
@@ -200,28 +69,7 @@ export default function LandingPage() {
|
||||
testimonial="A must-try for classic American fare in Decatur. Home-style cooking done right."
|
||||
rating={5}
|
||||
author="Keith Keller"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/front-view-spectacular-woman-laughing-front_197531-19644.jpg",
|
||||
alt: "Keith Keller",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/merry-young-adult-enjoying-christmas-conversation-video-call-room-decorated-festivity-celebration-talking-woman-preparing-drink-wine-kitchen-with-joyful-ornaments_482257-28400.jpg",
|
||||
alt: "Sarah M.",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-beautiful-afro-american-woman_23-2148332136.jpg",
|
||||
alt: "James D.",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/beautiful-african-american-woman-cafe_273609-5073.jpg",
|
||||
alt: "Linda P.",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/woman-smiling_1187-3196.jpg",
|
||||
alt: "Tom W.",
|
||||
},
|
||||
]}
|
||||
avatars={[{ src: "http://img.b2bpic.net/free-photo/front-view-spectacular-woman-laughing-front_197531-19644.jpg", alt: "Keith Keller" }, { src: "http://img.b2bpic.net/free-photo/merry-young-adult-enjoying-christmas-conversation-video-call-room-decorated-festivity-celebration-talking-woman-preparing-drink-wine-kitchen-with-joyful-ornaments_482257-28400.jpg", alt: "Sarah M." }, { src: "http://img.b2bpic.net/free-photo/portrait-beautiful-afro-american-woman_23-2148332136.jpg", alt: "James D." }, { src: "http://img.b2bpic.net/free-photo/beautiful-african-american-woman-cafe_273609-5073.jpg", alt: "Linda P." }, { src: "http://img.b2bpic.net/free-photo/woman-smiling_1187-3196.jpg", alt: "Tom W." }]}
|
||||
ratingAnimation="blur-reveal"
|
||||
avatarsAnimation="blur-reveal"
|
||||
/>
|
||||
@@ -235,38 +83,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Meet Our Team"
|
||||
description="The friendly faces behind your favorite meal."
|
||||
members={[
|
||||
{
|
||||
id: "m1",
|
||||
name: "John Doe",
|
||||
role: "Head Chef",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/talking-barista-manager-coffee-shop_1098-20939.jpg",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
name: "Jane Smith",
|
||||
role: "Manager",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-smiling_1187-3196.jpg",
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
name: "Mike Ross",
|
||||
role: "Head Server",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/serious-young-redhead-curly-lady-standing-cafe_171337-16581.jpg",
|
||||
},
|
||||
{
|
||||
id: "m4",
|
||||
name: "Alice Wong",
|
||||
role: "Barista",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-having-glass-coffee_23-2148178375.jpg",
|
||||
},
|
||||
{
|
||||
id: "m5",
|
||||
name: "Bob Taylor",
|
||||
role: "Prep Cook",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-black-woman-smile-camera_197531-33139.jpg",
|
||||
},
|
||||
]}
|
||||
members={[{ id: "m1", name: "John Doe", role: "Head Chef", imageSrc: "http://img.b2bpic.net/free-photo/talking-barista-manager-coffee-shop_1098-20939.jpg" }, { id: "m2", name: "Jane Smith", role: "Manager", imageSrc: "http://img.b2bpic.net/free-photo/woman-smiling_1187-3196.jpg" }, { id: "m3", name: "Mike Ross", role: "Head Server", imageSrc: "http://img.b2bpic.net/free-photo/serious-young-redhead-curly-lady-standing-cafe_171337-16581.jpg" }, { id: "m4", name: "Alice Wong", role: "Barista", imageSrc: "http://img.b2bpic.net/free-photo/girl-having-glass-coffee_23-2148178375.jpg" }, { id: "m5", name: "Bob Taylor", role: "Prep Cook", imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-black-woman-smile-camera_197531-33139.jpg" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -278,80 +95,13 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Chef Specials"
|
||||
description="Limited time offers you won't want to miss."
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Mega Breakfast Platter",
|
||||
price: "$18.00",
|
||||
variant: "Premium",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-english-breakfast-with-fried-egg-bacon-sausages-beans_123827-37129.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Loaded Burger",
|
||||
price: "$16.50",
|
||||
variant: "Classic",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beef-burger_1339-1356.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Gourmet Coffee",
|
||||
price: "$4.50",
|
||||
variant: "House Blend",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cup-strong-espresso-table-cafe-vintage-color-film-noise-grain-vertical-frame-selective-focus-idea-screensaver-menu-article-about-coffee_166373-2995.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Side of Rings",
|
||||
price: "$6.00",
|
||||
variant: "Crispy",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fried-potato-with-ketchup-juice_140725-3650.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Milkshake Duo",
|
||||
price: "$10.00",
|
||||
variant: "Sweet",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/milky-summer-cocktail-with-waffle-mapple-syrup_114579-11017.jpg",
|
||||
},
|
||||
]}
|
||||
products={[{ id: "p1", name: "Mega Breakfast Platter", price: "$18.00", variant: "Premium", imageSrc: "http://img.b2bpic.net/free-photo/full-english-breakfast-with-fried-egg-bacon-sausages-beans_123827-37129.jpg" }, { id: "p2", name: "Loaded Burger", price: "$16.50", variant: "Classic", imageSrc: "http://img.b2bpic.net/free-photo/beef-burger_1339-1356.jpg" }, { id: "p3", name: "Gourmet Coffee", price: "$4.50", variant: "House Blend", imageSrc: "http://img.b2bpic.net/free-photo/cup-strong-espresso-table-cafe-vintage-color-film-noise-grain-vertical-frame-selective-focus-idea-screensaver-menu-article-about-coffee_166373-2995.jpg" }, { id: "p4", name: "Side of Rings", price: "$6.00", variant: "Crispy", imageSrc: "http://img.b2bpic.net/free-photo/fried-potato-with-ketchup-juice_140725-3650.jpg" }, { id: "p5", name: "Milkshake Duo", price: "$10.00", variant: "Sweet", imageSrc: "http://img.b2bpic.net/free-photo/milky-summer-cocktail-with-waffle-mapple-syrup_114579-11017.jpg" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Links",
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Visit Us",
|
||||
items: [
|
||||
{
|
||||
label: "702 W Monroe St, Decatur, IN 46733",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={[{ title: "Links", items: [{ label: "Home", href: "/" }, { label: "Menu", href: "/menu" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }, { title: "Visit Us", items: [{ label: "702 W Monroe St, Decatur, IN 46733", href: "#" }] }]}
|
||||
logoText="West End Restaurant"
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user