Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f2716fe53c | |||
| 67ac41f84d | |||
| a25cfe1dfc | |||
| bd85c187a9 | |||
| abe24e48ce |
@@ -62,19 +62,23 @@ export default function ContactPage() {
|
|||||||
socialLinks={[
|
socialLinks={[
|
||||||
{
|
{
|
||||||
icon: Facebook,
|
icon: Facebook,
|
||||||
href: "https://facebook.com/savoria", ariaLabel: "Visit our Facebook page"},
|
href: "https://facebook.com/savoria", ariaLabel: "Visit our Facebook page"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
icon: Instagram,
|
icon: Instagram,
|
||||||
href: "https://instagram.com/savoria", ariaLabel: "Visit our Instagram profile"},
|
href: "https://instagram.com/savoria", ariaLabel: "Visit our Instagram profile"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
icon: Twitter,
|
icon: Twitter,
|
||||||
href: "https://twitter.com/savoria", ariaLabel: "Follow us on Twitter"},
|
href: "https://twitter.com/savoria", ariaLabel: "Follow us on Twitter"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
icon: Mail,
|
icon: Mail,
|
||||||
href: "mailto:info@savoria.com", ariaLabel: "Email us"},
|
href: "mailto:info@savoria.com", ariaLabel: "Email us"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,66 +1,24 @@
|
|||||||
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: "Savoria - Premium Restaurant", description: "Experience culinary excellence at Savoria"};
|
||||||
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 +1386,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