Update src/app/menu/page.tsx
This commit is contained in:
@@ -6,6 +6,7 @@ import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import { Drumstick, Carrot, ChefHat } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -26,30 +27,15 @@ export default function LandingPage() {
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "home",
|
||||
href: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "menu",
|
||||
href: "/menu",
|
||||
},
|
||||
name: "Menu", id: "/menu"},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
href: "/about",
|
||||
},
|
||||
name: "About", id: "/about"},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "reviews",
|
||||
href: "/reviews",
|
||||
},
|
||||
name: "Reviews", id: "/reviews"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
href: "/contact",
|
||||
},
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
brandName="Southern Comfort Kitchen"
|
||||
/>
|
||||
@@ -63,33 +49,13 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Southern Fried Chicken",
|
||||
price: "$14.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crispy-flossy-toast-with-shredded-pork_1150-23537.jpg?_wi=3",
|
||||
imageAlt: "Crispy fried chicken basket",
|
||||
},
|
||||
id: "1", name: "Southern Fried Chicken", price: "$14.99", imageSrc: "http://img.b2bpic.net/free-photo/crispy-flossy-toast-with-shredded-pork_1150-23537.jpg", imageAlt: "Crispy fried chicken basket"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Pan-Seared Pork Chops",
|
||||
price: "$16.50",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pork-chop-steak_1339-5917.jpg?_wi=3",
|
||||
imageAlt: "Pan seared pork chop with sides",
|
||||
},
|
||||
id: "2", name: "Pan-Seared Pork Chops", price: "$16.50", imageSrc: "http://img.b2bpic.net/free-photo/pork-chop-steak_1339-5917.jpg", imageAlt: "Pan seared pork chop with sides"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Creamy Potato Soup",
|
||||
price: "$7.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cauliflower-soup-bowl-wooden-table-close-up_123827-34671.jpg?_wi=3",
|
||||
imageAlt: "Bowl of creamy potato soup",
|
||||
},
|
||||
id: "3", name: "Creamy Potato Soup", price: "$7.99", imageSrc: "http://img.b2bpic.net/free-photo/cauliflower-soup-bowl-wooden-table-close-up_123827-34671.jpg", imageAlt: "Bowl of creamy potato soup"},
|
||||
{
|
||||
id: "4",
|
||||
name: "Smoked Prime Rib Sandwich",
|
||||
price: "$15.75",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sandwich-with-ground-meat_658428-394.jpg?_wi=3",
|
||||
imageAlt: "Prime rib sandwich with fries",
|
||||
},
|
||||
id: "4", name: "Smoked Prime Rib Sandwich", price: "$15.75", imageSrc: "http://img.b2bpic.net/free-photo/sandwich-with-ground-meat_658428-394.jpg", imageAlt: "Prime rib sandwich with fries"},
|
||||
]}
|
||||
title="Our Delicious Buffet & A La Carte Menu"
|
||||
description="Discover a wide array of authentic Southern comfort food, prepared fresh daily. From our famous fried chicken to soulful sides, there's something for everyone."
|
||||
@@ -103,26 +69,18 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Chef's Special Baked Chicken",
|
||||
description: "Succulent baked chicken seasoned to perfection, served with a medley of roasted seasonal vegetables.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-baked-chicken-veggies-plate-with-cutlery_23-2148682740.jpg?_wi=3",
|
||||
imageAlt: "Baked chicken with vegetables",
|
||||
},
|
||||
id: "1", title: "Chef's Special Baked Chicken", description: "Succulent baked chicken seasoned to perfection, served with a medley of roasted seasonal vegetables.", media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-baked-chicken-veggies-plate-with-cutlery_23-2148682740.jpg", imageAlt: "Baked chicken with vegetables"},
|
||||
items: [
|
||||
{
|
||||
icon: Drumstick,
|
||||
text: "Perfectly baked for tenderness",
|
||||
},
|
||||
text: "Perfectly baked for tenderness"},
|
||||
{
|
||||
icon: Carrot,
|
||||
text: "Fresh, locally sourced vegetables",
|
||||
},
|
||||
text: "Fresh, locally sourced vegetables"},
|
||||
{
|
||||
icon: ChefHat,
|
||||
text: "Chef's daily rotating sauce",
|
||||
},
|
||||
text: "Chef's daily rotating sauce"},
|
||||
],
|
||||
reverse: false,
|
||||
},
|
||||
@@ -136,54 +94,33 @@ export default function LandingPage() {
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Explore",
|
||||
items: [
|
||||
title: "Explore", items: [
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
label: "Menu", href: "/menu"},
|
||||
{
|
||||
label: "Catering",
|
||||
href: "/contact",
|
||||
},
|
||||
label: "Catering", href: "/contact"},
|
||||
{
|
||||
label: "Daily Specials",
|
||||
href: "/menu",
|
||||
},
|
||||
label: "Daily Specials", href: "/menu"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "About Us",
|
||||
items: [
|
||||
title: "About Us", items: [
|
||||
{
|
||||
label: "Our Story",
|
||||
href: "/about",
|
||||
},
|
||||
label: "Our Story", href: "/about"},
|
||||
{
|
||||
label: "Reviews",
|
||||
href: "/reviews",
|
||||
},
|
||||
label: "Reviews", href: "/reviews"},
|
||||
{
|
||||
label: "Team",
|
||||
href: "/about",
|
||||
},
|
||||
label: "Team", href: "/about"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect",
|
||||
items: [
|
||||
title: "Connect", items: [
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "/contact",
|
||||
},
|
||||
label: "Contact Us", href: "/contact"},
|
||||
{
|
||||
label: "Location",
|
||||
href: "/contact",
|
||||
},
|
||||
label: "Location", href: "/contact"},
|
||||
{
|
||||
label: "Careers",
|
||||
href: "#",
|
||||
},
|
||||
label: "Careers", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user