Merge version_1 into main #3

Merged
bender merged 1 commits from version_1 into main 2026-05-22 18:07:47 +00:00

View File

@@ -7,8 +7,9 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
import { Pizza, Users } from "lucide-react";
import Link from "next/link";
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
@@ -26,16 +27,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Home", id: "/"},
{
name: "Menu", id: "/menu"},
{
name: "About", id: "/about"},
{
name: "Gallery", id: "/gallery"},
{
name: "Contact", id: "/contact"},
{ name: "Home", id: "/" },
{ name: "Menu", id: "/menu" },
{ name: "About", id: "/about" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" },
]}
brandName="The Pizza Theatre"
/>
@@ -46,12 +42,8 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Our Journey in Numbers"
metrics={[
{
label: "Happy Customers", value: "10,000+", icon: Users,
},
{
label: "Pizzas Delivered", value: "50,000+", icon: Pizza,
},
{ label: "Happy Customers", value: "10,000+", icon: Users },
{ label: "Pizzas Delivered", value: "50,000+", icon: Pizza },
]}
metricsAnimation="slide-up"
/>
@@ -68,11 +60,13 @@ export default function LandingPage() {
{
id: "g1", groupTitle: "Kitchen Staff", members: [
{
id: "m1", title: "Chef Rohit", subtitle: "Head Pizzaiolo", detail: "15 years of experience in wood-fired perfection.", imageSrc: "http://img.b2bpic.net/free-photo/chef-white-uniform-prepare-pizzaa_1157-27016.jpg"},
id: "m1", title: "Chef Rohit", subtitle: "Head Pizzaiolo", detail: "15 years of experience in wood-fired perfection.", imageSrc: "http://img.b2bpic.net/free-photo/chef-white-uniform-prepare-pizzaa_1157-27016.jpg"
},
{
id: "m2", title: "Chef Meera", subtitle: "Dough Specialist", detail: "Secret dough recipe curator.", imageSrc: "http://img.b2bpic.net/free-photo/woman-spread-pizza-dough_23-2148570347.jpg"},
],
imageAlt: "Chef in a white uniform prepare a pizzaa"},
id: "m2", title: "Chef Meera", subtitle: "Dough Specialist", detail: "Secret dough recipe curator.", imageSrc: "http://img.b2bpic.net/free-photo/woman-spread-pizza-dough_23-2148570347.jpg"
}
]
}
]}
/>
</div>
@@ -82,20 +76,16 @@ export default function LandingPage() {
columns={[
{
items: [
{
label: "Menu", href: "/menu"},
{
label: "About", href: "/about"},
],
{ label: "Menu", href: "/menu" },
{ label: "About", href: "/about" },
]
},
{
items: [
{
label: "Contact", href: "/contact"},
{
label: "Privacy Policy", href: "#"},
],
},
{ label: "Contact", href: "/contact" },
{ label: "Privacy Policy", href: "#" },
]
}
]}
logoText="The Pizza Theatre"
/>