7 Commits

Author SHA1 Message Date
db8ae748e8 Update src/app/reservation/page.tsx 2026-05-14 03:19:55 +00:00
a198106dc8 Add src/app/reservation/page.tsx 2026-05-14 03:19:25 +00:00
253326a3bc Update src/app/page.tsx 2026-05-14 03:19:25 +00:00
1e2eb68e62 Update src/app/menu/page.tsx 2026-05-14 03:19:24 +00:00
a37541e311 Update src/app/about/page.tsx 2026-05-14 03:19:24 +00:00
53fd89161f Merge version_2 into main
Merge version_2 into main
2026-05-14 03:18:11 +00:00
3dc5294a6b Merge version_2 into main
Merge version_2 into main
2026-05-14 03:17:36 +00:00
4 changed files with 52 additions and 4 deletions

View File

@@ -24,6 +24,7 @@ export default function AboutPage() {
{ name: "About", id: "/about" }, { name: "About", id: "/about" },
{ name: "Menu", id: "/menu" }, { name: "Menu", id: "/menu" },
{ name: "Gallery", id: "gallery" }, { name: "Gallery", id: "gallery" },
{ name: "Reservation", id: "/reservation" },
{ name: "Contact", id: "contact" }, { name: "Contact", id: "contact" },
]} ]}
brandName="Pizzeria Primavera" brandName="Pizzeria Primavera"

View File

@@ -24,6 +24,7 @@ export default function MenuPage() {
{ name: "About", id: "/about" }, { name: "About", id: "/about" },
{ name: "Menu", id: "/menu" }, { name: "Menu", id: "/menu" },
{ name: "Gallery", id: "gallery" }, { name: "Gallery", id: "gallery" },
{ name: "Reservation", id: "/reservation" },
{ name: "Contact", id: "contact" }, { name: "Contact", id: "contact" },
]} ]}
brandName="Pizzeria Primavera" brandName="Pizzeria Primavera"

View File

@@ -34,6 +34,7 @@ export default function LandingPage() {
{ name: "About", id: "/about" }, { name: "About", id: "/about" },
{ name: "Menu", id: "/menu" }, { name: "Menu", id: "/menu" },
{ name: "Gallery", id: "gallery" }, { name: "Gallery", id: "gallery" },
{ name: "Reservation", id: "/reservation" },
{ name: "Contact", id: "contact" }, { name: "Contact", id: "contact" },
]} ]}
brandName="Pizzeria Primavera" brandName="Pizzeria Primavera"
@@ -47,7 +48,7 @@ export default function LandingPage() {
description="Wood-fired pizza, fresh ingredients, unforgettable atmosphere." description="Wood-fired pizza, fresh ingredients, unforgettable atmosphere."
tag="Since 1995" tag="Since 1995"
buttons={[ buttons={[
{ text: "Reserve a Table", href: "#contact" }, { text: "Reserve a Table", href: "/reservation" },
{ text: "Explore Menu", href: "/menu" }, { text: "Explore Menu", href: "/menu" },
]} ]}
mediaItems={[ mediaItems={[
@@ -148,7 +149,7 @@ export default function LandingPage() {
background={{ variant: "radial-gradient" }} background={{ variant: "radial-gradient" }}
text="Pizzeria Primavera Wien | Steinbauergasse 22/3, 1120 Vienna, Austria | Phone: +43 681 20111959" text="Pizzeria Primavera Wien | Steinbauergasse 22/3, 1120 Vienna, Austria | Phone: +43 681 20111959"
buttons={[ buttons={[
{ text: "Reserve Now", href: "#contact" }, { text: "Reserve Now", href: "/reservation" },
{ text: "Get Directions", href: "https://maps.google.com" }, { text: "Get Directions", href: "https://maps.google.com" },
]} ]}
/> />
@@ -159,7 +160,7 @@ export default function LandingPage() {
imageSrc="http://img.b2bpic.net/free-photo/italian-chef-is-putting-prepared-margarita-pizza-oven-with-flame-it_613910-3398.jpg" imageSrc="http://img.b2bpic.net/free-photo/italian-chef-is-putting-prepared-margarita-pizza-oven-with-flame-it_613910-3398.jpg"
logoText="Pizzeria Primavera" logoText="Pizzeria Primavera"
columns={[ columns={[
{ title: "Navigate", items: [{ label: "Menu", href: "/menu" }, { label: "Gallery", href: "#gallery" }] }, { title: "Navigate", items: [{ label: "Menu", href: "/menu" }, { label: "Gallery", href: "/gallery" }] },
{ title: "Hours", items: [{ label: "Daily 11:00 - 23:00", href: "#" }] }, { title: "Hours", items: [{ label: "Daily 11:00 - 23:00", href: "#" }] },
]} ]}
/> />

View File

@@ -0,0 +1,45 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ContactCenter from '@/components/sections/contact/ContactCenter';
export default function ReservationPage() {
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="small"
sizing="medium"
background="circleGradient"
cardStyle="glass-depth"
primaryButtonStyle="gradient"
secondaryButtonStyle="radial-glow"
headingFontWeight="medium"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Menu", id: "/menu" },
{ name: "Gallery", id: "gallery" },
{ name: "Reservation", id: "/reservation" },
{ name: "Contact", id: "contact" },
]}
brandName="Pizzeria Primavera"
/>
</div>
<div id="contact" data-section="contact" className="pt-32">
<ContactCenter
title="Book Your Table"
tag="Reservation"
description="Experience authentic Italian flavors. Secure your spot today for an unforgettable dinner."
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
/>
</div>
</ThemeProvider>
);
}