Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6650b5fb97 | |||
| 77dae3c63f | |||
| 2e7df44151 | |||
| a649cbd56c | |||
| 98c3b36c00 | |||
| f182958c93 | |||
| 4858db69b8 | |||
| cfa0d9deca | |||
| 51ca620585 | |||
| 72190b9222 |
@@ -8,8 +8,10 @@ import Link from 'next/link';
|
||||
import { HeartHandshake, UtensilsCrossed, Sparkles } from 'lucide-react';
|
||||
|
||||
const navItems = [
|
||||
{ name: "Home", id: "home", href: "/" },
|
||||
{ name: "Menu", id: "menu", href: "/menu" },
|
||||
{ name: "About", id: "about", href: "/about" },
|
||||
{ name: "Contact", id: "contact", href: "/contact" },
|
||||
{ name: "Contact", id: "contact", href: "/contact" }
|
||||
];
|
||||
|
||||
const Footer = ({ navItems }: { navItems: { name: string; href: string; id: string }[] }) => {
|
||||
@@ -81,10 +83,10 @@ export default function AboutPage() {
|
||||
description="Behind every delicious dish and warm welcome is our passionate team, committed to making your dining experience extraordinary. We are a family dedicated to culinary excellence and genuine hospitality."
|
||||
team={[
|
||||
{
|
||||
id: "chef-ejaz", name: "Ejaz Ahmed", role: "Head Chef & Founder", imageSrc: "http://img.b2bpic.net/free-photo/happy-male-chef-cook-restaurant-kitchen_496169-81.jpg", imageAlt: "Portrait of Head Chef Ejaz Ahmed"
|
||||
id: "chef-ejaz", name: "Ejaz Ahmed", role: "Head Chef & Founder", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BRjeOrRswV8Q0a4eFfWa6GkusJ/uploaded-1774460455360-uueq9gj5.jpg", imageAlt: "Portrait of Head Chef Ejaz Ahmed"
|
||||
},
|
||||
{
|
||||
id: "manager-sarah", name: "Sarah Khan", role: "Restaurant Manager", imageSrc: "http://img.b2bpic.net/free-photo/man-cafe_1098-13701.jpg", imageAlt: "Portrait of Restaurant Manager Sarah Khan"
|
||||
id: "manager-sarah", name: "Sarah Khan", role: "Restaurant Manager", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BRjeOrRswV8Q0a4eFfWa6GkusJ/uploaded-1774460455361-duglxxpz.jpg", imageAlt: "Portrait of Restaurant Manager Sarah Khan"
|
||||
},
|
||||
{
|
||||
id: "service-alban", name: "Alban Hoxha", role: "Lead Server", imageSrc: "http://img.b2bpic.net/free-photo/young-happy-waiter-taking-order-from-his-guests-cafe_637285-7842.jpg", imageAlt: "Portrait of Lead Server Alban Hoxha"
|
||||
@@ -98,4 +100,4 @@ export default function AboutPage() {
|
||||
<Footer navItems={navItems} />
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -7,8 +7,10 @@ import Link from 'next/link';
|
||||
import { FormInput } from 'lucide-react';
|
||||
|
||||
const navItems = [
|
||||
{ name: "Home", id: "home", href: "/" },
|
||||
{ name: "Menu", id: "menu", href: "/menu" },
|
||||
{ name: "About", id: "about", href: "/about" },
|
||||
{ name: "Contact", id: "contact", href: "/contact" },
|
||||
{ name: "Contact", id: "contact", href: "/contact" }
|
||||
];
|
||||
|
||||
const Footer = ({ navItems }: { navItems: { name: string; href: string; id: string }[] }) => {
|
||||
@@ -82,4 +84,4 @@ export default function ContactPage() {
|
||||
<Footer navItems={navItems} />
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -7,7 +7,9 @@ import Link from "next/link";
|
||||
|
||||
const navItems = [
|
||||
{ name: "Home", id: "home", href: "/" },
|
||||
{ name: "Menu", id: "menu", href: "/menu" }
|
||||
{ name: "Menu", id: "menu", href: "/menu" },
|
||||
{ name: "About", id: "about", href: "/about" },
|
||||
{ name: "Contact", id: "contact", href: "/contact" }
|
||||
];
|
||||
|
||||
export default function MenuPage() {
|
||||
@@ -167,4 +169,4 @@ export default function MenuPage() {
|
||||
</footer>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user