Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2439d8f01e | |||
| 5b09108ee0 | |||
| bc2cd5d2d4 | |||
| f2716fe53c | |||
| 67ac41f84d | |||
| a25cfe1dfc | |||
| bd85c187a9 | |||
| abe24e48ce |
@@ -32,7 +32,7 @@ export default function ContactPage() {
|
|||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
brandName="Savoria"
|
brandName="Restaurant Demo"
|
||||||
navItems={navItems}
|
navItems={navItems}
|
||||||
button={{ text: "Reserve Table", href: "/reservations" }}
|
button={{ text: "Reserve Table", href: "/reservations" }}
|
||||||
/>
|
/>
|
||||||
@@ -40,14 +40,14 @@ export default function ContactPage() {
|
|||||||
|
|
||||||
<div id="contact-section" data-section="contact-section">
|
<div id="contact-section" data-section="contact-section">
|
||||||
<ContactCTA
|
<ContactCTA
|
||||||
tag="Contact Savoria"
|
tag="Contact Restaurant Demo"
|
||||||
tagIcon={MapPin}
|
tagIcon={MapPin}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
title="Get in Touch"
|
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."
|
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={[
|
buttons={[
|
||||||
{ text: "Call: +1 (555) 123-4567", href: "tel:+15551234567" },
|
{ 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"
|
buttonAnimation="slide-up"
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
@@ -57,21 +57,25 @@ export default function ContactPage() {
|
|||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterCard
|
<FooterCard
|
||||||
logoText="Savoria"
|
logoText="Restaurant Demo"
|
||||||
copyrightText="© 2025 Savoria Restaurant. All rights reserved. Culinary Excellence Since 2008."
|
copyrightText="© 2025 Restaurant Demo. All rights reserved. Culinary Excellence Since 2008."
|
||||||
socialLinks={[
|
socialLinks={[
|
||||||
{
|
{
|
||||||
icon: Facebook,
|
icon: Facebook,
|
||||||
href: "https://facebook.com/savoria", ariaLabel: "Visit our Facebook page"},
|
href: "https://facebook.com/restaurantdemo", ariaLabel: "Visit our Facebook page"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
icon: Instagram,
|
icon: Instagram,
|
||||||
href: "https://instagram.com/savoria", ariaLabel: "Visit our Instagram profile"},
|
href: "https://instagram.com/restaurantdemo", ariaLabel: "Visit our Instagram profile"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
icon: Twitter,
|
icon: Twitter,
|
||||||
href: "https://twitter.com/savoria", ariaLabel: "Follow us on Twitter"},
|
href: "https://twitter.com/restaurantdemo", ariaLabel: "Follow us on Twitter"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
icon: Mail,
|
icon: Mail,
|
||||||
href: "mailto:info@savoria.com", ariaLabel: "Email us"},
|
href: "mailto:info@restaurantdemo.com", ariaLabel: "Email us"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,66 +1,25 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { DM_Sans, Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import "./styles/variables.css";
|
||||||
import Tag from "@/tag/Tag";
|
import "./styles/base.css";
|
||||||
|
|
||||||
const dmSans = DM_Sans({
|
|
||||||
variable: "--font-dm-sans",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
const inter = Inter({
|
||||||
variable: "--font-inter",
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Savoria - Fine Dining Restaurant",
|
title: "Restaurant Demo - Premium Dining Experience", description: "Experience culinary excellence at Restaurant Demo"
|
||||||
description: "Experience culinary excellence at Savoria. Award-winning chef, fresh ingredients, and elegant ambiance. Make a reservation today for an unforgettable dining experience.",
|
|
||||||
keywords: "fine dining, gourmet restaurant, reservations, chef's special, elegant atmosphere",
|
|
||||||
metadataBase: new URL("https://savoria-restaurant.com"),
|
|
||||||
alternates: {
|
|
||||||
canonical: "https://savoria-restaurant.com",
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Savoria - Fine Dining Restaurant",
|
|
||||||
description: "Experience culinary excellence at Savoria. Award-winning chef, fresh ingredients, and elegant ambiance.",
|
|
||||||
url: "https://savoria-restaurant.com",
|
|
||||||
siteName: "Savoria",
|
|
||||||
type: "website",
|
|
||||||
images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/mixed-vegetable-salad-with-white-cheese_140725-4412.jpg",
|
|
||||||
alt: "Savoria Restaurant Fine Dining",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image",
|
|
||||||
title: "Savoria - Fine Dining Restaurant",
|
|
||||||
description: "Experience culinary excellence at Savoria. Award-winning chef, fresh ingredients, elegant ambiance.",
|
|
||||||
images: ["http://img.b2bpic.net/free-photo/mixed-vegetable-salad-with-white-cheese_140725-4412.jpg"],
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.variable}>{children}
|
||||||
<body
|
|
||||||
className={`${dmSans.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1428,7 +1387,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #f5f5f5;
|
--background: #0a0a0a;
|
||||||
--card: #ffffff;
|
--card: #1a1a1a;
|
||||||
--foreground: #1c1c1c;
|
--foreground: #ffffffe6;
|
||||||
--primary-cta: #1c1c1c;
|
--primary-cta: #e6e6e6;
|
||||||
--primary-cta-text: #f5f5f5;
|
--primary-cta-text: #f5f5f5;
|
||||||
--secondary-cta: #ffffff;
|
--secondary-cta: #1a1a1a;
|
||||||
--secondary-cta-text: #1c1c1c;
|
--secondary-cta-text: #1c1c1c;
|
||||||
--accent: #6139e6;
|
--accent: #737373;
|
||||||
--background-accent: #b3a8e8;
|
--background-accent: #737373;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user