From a25cfe1dfca073bc9e657de21ab03616d9a31482 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 06:51:34 +0000 Subject: [PATCH 1/3] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index a49db0d..29ea52c 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -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" + }, ]} /> ); -} \ No newline at end of file +} -- 2.49.1 From 67ac41f84d0687b43d0bd5384336d3c6494a6404 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 06:51:34 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 63 ++++++++-------------------------------------- 1 file changed, 10 insertions(+), 53 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b7184d8..46ada86 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}