Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f2716fe53c | |||
| 67ac41f84d | |||
| a25cfe1dfc | |||
| bd85c187a9 | |||
| abe24e48ce |
@@ -62,19 +62,23 @@ export default function ContactPage() {
|
||||
socialLinks={[
|
||||
{
|
||||
icon: Facebook,
|
||||
href: "https://facebook.com/savoria", ariaLabel: "Visit our Facebook page"},
|
||||
href: "https://facebook.com/savoria", ariaLabel: "Visit our Facebook page"
|
||||
},
|
||||
{
|
||||
icon: Instagram,
|
||||
href: "https://instagram.com/savoria", ariaLabel: "Visit our Instagram profile"},
|
||||
href: "https://instagram.com/savoria", ariaLabel: "Visit our Instagram profile"
|
||||
},
|
||||
{
|
||||
icon: Twitter,
|
||||
href: "https://twitter.com/savoria", ariaLabel: "Follow us on Twitter"},
|
||||
href: "https://twitter.com/savoria", ariaLabel: "Follow us on Twitter"
|
||||
},
|
||||
{
|
||||
icon: Mail,
|
||||
href: "mailto:info@savoria.com", ariaLabel: "Email us"},
|
||||
href: "mailto:info@savoria.com", ariaLabel: "Email us"
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,66 +1,24 @@
|
||||
import type { Metadata } from "next";
|
||||
import { DM_Sans, Inter } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
import "./styles/variables.css";
|
||||
import "./styles/base.css";
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Savoria - Fine Dining Restaurant",
|
||||
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,
|
||||
},
|
||||
};
|
||||
title: "Savoria - Premium Restaurant", description: "Experience culinary excellence at Savoria"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${dmSans.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.variable}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1428,7 +1386,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #f5f5f5;
|
||||
--card: #ffffff;
|
||||
--foreground: #1c1c1c;
|
||||
--primary-cta: #1c1c1c;
|
||||
--background: #0a0a0a;
|
||||
--card: #1a1a1a;
|
||||
--foreground: #ffffffe6;
|
||||
--primary-cta: #e6e6e6;
|
||||
--primary-cta-text: #f5f5f5;
|
||||
--secondary-cta: #ffffff;
|
||||
--secondary-cta: #1a1a1a;
|
||||
--secondary-cta-text: #1c1c1c;
|
||||
--accent: #6139e6;
|
||||
--background-accent: #b3a8e8;
|
||||
--accent: #737373;
|
||||
--background-accent: #737373;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user