diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index e8600a1..a2b9fac 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,57 +1,17 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { DM_Sans } from "next/font/google";
-import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const dmSans = DM_Sans({
- variable: "--font-dm-sans", subsets: ["latin"],
-});
+import "@/styles/globals.css";
export const metadata: Metadata = {
- title: "Dolce Vita | Authentic Italian Cuisine & Fine Dining", description: "Experience authentic Italian cuisine at Dolce Vita. Artisanal dishes, premium ingredients, and impeccable service in an elegant atmosphere.", keywords: "Italian restaurant, fine dining, authentic cuisine, risotto, pasta, Italian wines, reservations", metadataBase: new URL("https://dolcevita.com"),
- alternates: {
- canonical: "https://dolcevita.com"},
- openGraph: {
- title: "Dolce Vita | Authentic Italian Cuisine", description: "Discover the essence of Italy through meticulously crafted dishes and premium ingredients.", url: "https://dolcevita.com", siteName: "Dolce Vita", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/close-up-large-tube-pasta-with-chicken-cherry-tomato-with-chopped-parsley_141793-1840.jpg", alt: "Dolce Vita signature pasta dish"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Dolce Vita | Authentic Italian Dining", description: "Experience authentic Italian cuisine at Dolce Vita.", images: ["http://img.b2bpic.net/free-photo/close-up-large-tube-pasta-with-chicken-cherry-tomato-with-chopped-parsley_141793-1840.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Dolce Vita - Authentic Italian Cuisine", description: "Experience authentic Italian dining with premium ingredients and impeccable service."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-