5 Commits

Author SHA1 Message Date
f2716fe53c Update src/app/styles/variables.css 2026-03-06 06:51:35 +00:00
67ac41f84d Update src/app/layout.tsx 2026-03-06 06:51:34 +00:00
a25cfe1dfc Update src/app/contact/page.tsx 2026-03-06 06:51:34 +00:00
bd85c187a9 Merge version_1 into main
Merge version_1 into main
2026-03-06 06:23:50 +00:00
abe24e48ce Merge version_1 into main
Merge version_1 into main
2026-03-06 06:23:05 +00:00
3 changed files with 26 additions and 65 deletions

View File

@@ -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>
);
}
}

View File

@@ -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>
);
}
}

View File

@@ -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);