4 Commits

Author SHA1 Message Date
89e14ccb44 Merge version_3 into main
Merge version_3 into main
2026-03-06 07:12:39 +00:00
2439d8f01e Update src/app/layout.tsx 2026-03-06 07:12:35 +00:00
5b09108ee0 Update src/app/contact/page.tsx 2026-03-06 07:12:35 +00:00
bc2cd5d2d4 Merge version_2 into main
Merge version_2 into main
2026-03-06 06:51:39 +00:00
2 changed files with 11 additions and 10 deletions

View File

@@ -32,7 +32,7 @@ export default function ContactPage() {
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Savoria"
brandName="Restaurant Demo"
navItems={navItems}
button={{ text: "Reserve Table", href: "/reservations" }}
/>
@@ -40,14 +40,14 @@ export default function ContactPage() {
<div id="contact-section" data-section="contact-section">
<ContactCTA
tag="Contact Savoria"
tag="Contact Restaurant Demo"
tagIcon={MapPin}
tagAnimation="slide-up"
title="Get in Touch"
description="Have questions or need assistance? Reach out to our team. We're here to help ensure your dining experience is exceptional. Visit us, call us, or send us a message online."
buttons={[
{ text: "Call: +1 (555) 123-4567", href: "tel:+15551234567" },
{ text: "Email: info@savoria.com", href: "mailto:info@savoria.com" },
{ text: "Email: info@restaurantdemo.com", href: "mailto:info@restaurantdemo.com" },
]}
buttonAnimation="slide-up"
background={{ variant: "plain" }}
@@ -57,24 +57,24 @@ export default function ContactPage() {
<div id="footer" data-section="footer">
<FooterCard
logoText="Savoria"
copyrightText="© 2025 Savoria Restaurant. All rights reserved. Culinary Excellence Since 2008."
logoText="Restaurant Demo"
copyrightText="© 2025 Restaurant Demo. All rights reserved. Culinary Excellence Since 2008."
socialLinks={[
{
icon: Facebook,
href: "https://facebook.com/savoria", ariaLabel: "Visit our Facebook page"
href: "https://facebook.com/restaurantdemo", ariaLabel: "Visit our Facebook page"
},
{
icon: Instagram,
href: "https://instagram.com/savoria", ariaLabel: "Visit our Instagram profile"
href: "https://instagram.com/restaurantdemo", ariaLabel: "Visit our Instagram profile"
},
{
icon: Twitter,
href: "https://twitter.com/savoria", ariaLabel: "Follow us on Twitter"
href: "https://twitter.com/restaurantdemo", ariaLabel: "Follow us on Twitter"
},
{
icon: Mail,
href: "mailto:info@savoria.com", ariaLabel: "Email us"
href: "mailto:info@restaurantdemo.com", ariaLabel: "Email us"
},
]}
/>

View File

@@ -9,7 +9,8 @@ const inter = Inter({
});
export const metadata: Metadata = {
title: "Savoria - Premium Restaurant", description: "Experience culinary excellence at Savoria"};
title: "Restaurant Demo - Premium Dining Experience", description: "Experience culinary excellence at Restaurant Demo"
};
export default function RootLayout({
children,