diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 93c79a4..e663b08 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,57 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Open_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 openSans = Open_Sans({
- variable: "--font-open-sans", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "GUJARATI RASOI - Authentic Vegetarian Restaurant in Muscat", description: "Experience authentic Gujarati, Punjabi & Jain cuisine at GUJARATI RASOI in Muscat. Pure vegetarian, family-friendly, open daily till 11 PM. Call 7980 2301 to reserve.", keywords: "Gujarati restaurant Muscat, vegetarian restaurant Muscat, Jain food Muscat, authentic Indian cuisine, pure vegetarian dishes", metadataBase: new URL("https://gujarati-rasoi.com"),
- alternates: {
- canonical: "https://gujarati-rasoi.com"},
- openGraph: {
- title: "GUJARATI RASOI - Authentic Gujarati Vegetarian Restaurant", description: "Pure vegetarian & Jain authentic cuisine in Muscat. Fresh, flavorful, family-friendly. Reserve your table today!", url: "https://gujarati-rasoi.com", siteName: "GUJARATI RASOI", type: "website", images: [
- {
- url: "https://gujarati-rasoi.com/og-image.jpg", alt: "Authentic Gujarati Thali"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "GUJARATI RASOI - Authentic Vegetarian Restaurant", description: "Experience pure vegetarian & Jain authentic Gujarati cuisine in Muscat.", images: ["https://gujarati-rasoi.com/twitter-image.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "GUJARATI RASOI - Authentic Vegetarian & Jain Cuisine in Muscat", description: "Experience pure vegetarian and Jain authentic Gujarati, Punjabi & specialty dishes. Fresh, flavorful, and lovingly prepared for your family."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-