9 Commits

Author SHA1 Message Date
77dae3c63f Update src/app/menu/page.tsx 2026-03-25 17:41:51 +00:00
2e7df44151 Update src/app/contact/page.tsx 2026-03-25 17:41:51 +00:00
a649cbd56c Update src/app/about/page.tsx 2026-03-25 17:41:51 +00:00
98c3b36c00 Merge version_1 into main
Merge version_1 into main
2026-03-25 17:30:44 +00:00
f182958c93 Merge version_1 into main
Merge version_1 into main
2026-03-25 17:30:15 +00:00
4858db69b8 Merge version_1 into main
Merge version_1 into main
2026-03-25 17:29:47 +00:00
cfa0d9deca Merge version_1 into main
Merge version_1 into main
2026-03-25 17:29:19 +00:00
51ca620585 Merge version_1 into main
Merge version_1 into main
2026-03-25 17:28:38 +00:00
72190b9222 Merge version_1 into main
Merge version_1 into main
2026-03-25 17:28:06 +00:00
3 changed files with 14 additions and 8 deletions

View File

@@ -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>
);
}
}

View File

@@ -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>
);
}
}

View File

@@ -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>
);
}
}