Merge version_1 into main #2

Merged
bender merged 2 commits from version_1 into main 2026-04-08 00:44:09 +00:00
2 changed files with 104 additions and 293 deletions

View File

@@ -7,7 +7,7 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog';
export default function LandingPage() {
export default function MenuPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
@@ -22,157 +22,55 @@ export default function LandingPage() {
headingFontWeight="bold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Menu",
id: "/menu",
},
{
name: "About",
id: "/about",
},
{
name: "Order Online",
id: "/order",
},
{
name: "Contact",
id: "/contact",
},
]}
button={{
text: "Order Now",
href: "/order",
}}
brandName="The Kitchen on Main"
/>
</div>
<div id="menu-all" data-section="menu-all">
<ProductCatalog
layout="page"
products={[
{
id: "m1",
name: "Cheeseburger Fries",
price: "$13.99",
category: "Appetizers",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-sweet-potato_23-2148619072.jpg?_wi=4",
},
{
id: "m2",
name: "Boneless Wings",
price: "$9.99",
category: "Appetizers",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-sweet-potato_23-2148619072.jpg?_wi=5",
},
{
id: "m3",
name: "Caesar Salad",
price: "$10.49",
category: "Salads",
imageSrc: "http://img.b2bpic.net/free-photo/tasty-salad-plate_23-2147761589.jpg?_wi=3",
},
{
id: "m4",
name: "Deli Turkey & Cheese",
price: "$11.99",
category: "Sandwiches",
imageSrc: "http://img.b2bpic.net/free-photo/burger-with-ham-tomatoes-cabbage_140725-2354.jpg?_wi=6",
},
{
id: "m5",
name: "BBB BBQ Bacon Bleu",
price: "$15.99",
category: "Burgers",
imageSrc: "http://img.b2bpic.net/free-photo/burger-with-ham-tomatoes-cabbage_140725-2354.jpg?_wi=7",
},
{
id: "m6",
name: "Grilled Cheese",
price: "$6.99",
category: "Kids",
imageSrc: "http://img.b2bpic.net/free-photo/burger-with-ham-tomatoes-cabbage_140725-2354.jpg?_wi=8",
},
]}
/>
</div>
<div id="faq" data-section="faq">
<FaqBase
textboxLayout="default"
useInvertedBackground={false}
title="Menu FAQs"
description="Dietary and menu questions."
faqsAnimation="slide-up"
faqs={[
{
id: "q1",
title: "Allergens?",
content: "Please alert your server to any allergies.",
},
{
id: "q2",
title: "Daily Specials?",
content: "Check our board for daily Chef's specials.",
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Home",
href: "/",
},
{
label: "Menu",
href: "/menu",
},
{
label: "About",
href: "/about",
},
],
},
{
items: [
{
label: "Order Online",
href: "/order",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
items: [
{
label: "Fortville, IN",
href: "#",
},
{
label: "Open Daily",
href: "#",
},
],
},
]}
logoText="The Kitchen on Main"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "Menu", id: "/menu" },
{ name: "About", id: "/about" },
{ name: "Order Online", id: "/order" },
{ name: "Contact", id: "/contact" }
]}
button={{ text: "Order Now", href: "/order" }}
brandName="The Kitchen on Main"
/>
</div>
<div id="menu-all" data-section="menu-all">
<ProductCatalog
layout="page"
products={[
{ id: "m1", name: "Cheeseburger Fries", price: "$13.99", category: "Appetizers", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-sweet-potato_23-2148619072.jpg", rating: 5 },
{ id: "m2", name: "Boneless Wings", price: "$9.99", category: "Appetizers", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-sweet-potato_23-2148619072.jpg", rating: 5 },
{ id: "m3", name: "Caesar Salad", price: "$10.49", category: "Salads", imageSrc: "http://img.b2bpic.net/free-photo/tasty-salad-plate_23-2147761589.jpg", rating: 5 },
{ id: "m4", name: "Deli Turkey & Cheese", price: "$11.99", category: "Sandwiches", imageSrc: "http://img.b2bpic.net/free-photo/burger-with-ham-tomatoes-cabbage_140725-2354.jpg", rating: 5 },
{ id: "m5", name: "BBB BBQ Bacon Bleu", price: "$15.99", category: "Burgers", imageSrc: "http://img.b2bpic.net/free-photo/burger-with-ham-tomatoes-cabbage_140725-2354.jpg", rating: 5 },
{ id: "m6", name: "Grilled Cheese", price: "$6.99", category: "Kids", imageSrc: "http://img.b2bpic.net/free-photo/burger-with-ham-tomatoes-cabbage_140725-2354.jpg", rating: 5 }
]}
/>
</div>
<div id="faq" data-section="faq">
<FaqBase
textboxLayout="default"
useInvertedBackground={false}
title="Menu FAQs"
description="Dietary and menu questions."
faqsAnimation="slide-up"
faqs={[
{ id: "q1", title: "Allergens?", content: "Please alert your server to any allergies." },
{ id: "q2", title: "Daily Specials?", content: "Check our board for daily Chef's specials." }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Menu", href: "/menu" }, { label: "About", href: "/about" }] },
{ items: [{ label: "Order Online", href: "/order" }, { label: "Contact", href: "/contact" }] },
{ items: [{ label: "Fortville, IN", href: "#" }, { label: "Open Daily", href: "#" }] }
]}
logoText="The Kitchen on Main"
/>
</div>
</ReactLenis>
</ThemeProvider>
);

View File

@@ -8,7 +8,7 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS
import ProductDetailCard from '@/components/ecommerce/productDetail/ProductDetailCard';
import { ShoppingBag, Truck } from "lucide-react";
export default function LandingPage() {
export default function OrderPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
@@ -23,146 +23,59 @@ export default function LandingPage() {
headingFontWeight="bold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Menu",
id: "/menu",
},
{
name: "About",
id: "/about",
},
{
name: "Order Online",
id: "/order",
},
{
name: "Contact",
id: "/contact",
},
]}
button={{
text: "Order Now",
href: "/order",
}}
brandName="The Kitchen on Main"
/>
</div>
<div id="feature" data-section="feature">
<FeatureCardTwentyFive
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="How to Order"
description="Get your favorite meals delivered or ready for pickup."
features={[
{
title: "Pickup",
description: "Order ahead and pick up at the counter.",
icon: ShoppingBag,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/burger-with-ham-tomatoes-cabbage_140725-2354.jpg?_wi=9",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-sweet-potato_23-2148619072.jpg?_wi=6",
},
],
imageSrc: "http://img.b2bpic.net/free-photo/barista-with-drink-looking-away_23-2147830585.jpg?_wi=3",
imageAlt: "gourmet american burger restaurant",
},
{
title: "Delivery",
description: "Get food delivered to your door.",
icon: Truck,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/tasty-salad-plate_23-2147761589.jpg?_wi=4",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/burger-with-ham-tomatoes-cabbage_140725-2354.jpg?_wi=10",
},
],
imageSrc: "http://img.b2bpic.net/free-photo/burger-with-ham-tomatoes-cabbage_140725-2354.jpg?_wi=11",
imageAlt: "gourmet bacon cheeseburger on plate",
},
]}
/>
</div>
<div id="ecommerce" data-section="ecommerce">
<ProductDetailCard
layout="section"
name="Signature Burger Combo"
price="$18.99"
images={[
{
src: "http://img.b2bpic.net/free-photo/burger-with-ham-tomatoes-cabbage_140725-2354.jpg",
alt: "Burger",
},
]}
buttons={[
{
text: "Add to Order",
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Home",
href: "/",
},
{
label: "Menu",
href: "/menu",
},
{
label: "About",
href: "/about",
},
],
},
{
items: [
{
label: "Order Online",
href: "/order",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
items: [
{
label: "Fortville, IN",
href: "#",
},
{
label: "Open Daily",
href: "#",
},
],
},
]}
logoText="The Kitchen on Main"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "Menu", id: "/menu" },
{ name: "About", id: "/about" },
{ name: "Order Online", id: "/order" },
{ name: "Contact", id: "/contact" }
]}
button={{ text: "Order Now", href: "/order" }}
brandName="The Kitchen on Main"
/>
</div>
<div id="feature" data-section="feature">
<FeatureCardTwentyFive
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="How to Order"
description="Get your favorite meals delivered or ready for pickup."
features={[
{
title: "Pickup", description: "Order ahead and pick up at the counter.", icon: ShoppingBag,
mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/burger-with-ham-tomatoes-cabbage_140725-2354.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-sweet-potato_23-2148619072.jpg" }],
reverse: false
},
{
title: "Delivery", description: "Get food delivered to your door.", icon: Truck,
mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/tasty-salad-plate_23-2147761589.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/burger-with-ham-tomatoes-cabbage_140725-2354.jpg" }],
reverse: true
}
]}
/>
</div>
<div id="ecommerce" data-section="ecommerce">
<ProductDetailCard
layout="section"
name="Signature Burger Combo"
price="$18.99"
images={[{ src: "http://img.b2bpic.net/free-photo/burger-with-ham-tomatoes-cabbage_140725-2354.jpg", alt: "Burger" }]}
buttons={[{ text: "Add to Order" }]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Menu", href: "/menu" }, { label: "About", href: "/about" }] },
{ items: [{ label: "Order Online", href: "/order" }, { label: "Contact", href: "/contact" }] },
{ items: [{ label: "Fortville, IN", href: "#" }, { label: "Open Daily", href: "#" }] }
]}
logoText="The Kitchen on Main"
/>
</div>
</ReactLenis>
</ThemeProvider>
);