diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index a9ff94f..8cad3f2 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,76 +1,28 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { Nunito_Sans } from "next/font/google";
+import { Geist, Geist_Mono } 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 geist = Geist({
+ variable: "--font-geist-sans", subsets: ["latin"],
});
-const inter = Inter({
- variable: "--font-inter",
- subsets: ["latin"],
-});
-
-const nunitoSans = Nunito_Sans({
- variable: "--font-nunito-sans",
- subsets: ["latin"],
+const geistMono = Geist_Mono({
+ variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "Tamashah - Authentic Indian Restaurant in Crawley",
- description: "Award-winning Indian restaurant in Crawley. Fine dining, all-you-can-eat buffet, collection & delivery. Book your table or order online today. ⭐ 4.0 rating, 754 reviews.",
- keywords: "Indian restaurant Crawley, Indian food near me, best curry Crawley, Indian takeaway, fine dining, all you can eat",
- metadataBase: new URL("https://tamashah.co.uk"),
- alternates: {
- canonical: "https://tamashah.co.uk",
- },
- openGraph: {
- title: "Tamashah - Authentic Indian Restaurant in Crawley",
- description: "Experience authentic Indian cuisine. Fine dining, all-you-can-eat, delivery & collection available.",
- url: "https://tamashah.co.uk",
- siteName: "Tamashah",
- type: "website",
- images: [
- {
- url: "http://img.b2bpic.net/free-photo/rustic-chandelier-made-bulbs-ropes-dining-table-vintage-kitchen_181624-9173.jpg",
- alt: "Tamashah restaurant interior",
- },
- ],
- },
- twitter: {
- card: "summary_large_image",
- title: "Tamashah - Indian Restaurant",
- description: "Authentic Indian cuisine in Crawley. 4.0 rating from 754 reviews.",
- images: [
- "http://img.b2bpic.net/free-photo/rustic-chandelier-made-bulbs-ropes-dining-table-vintage-kitchen_181624-9173.jpg",
- ],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Tamashah - Authentic Indian Restaurant", description: "Family-owned Indian restaurant in Crawley serving authentic subcontinental cuisine since 2010. Dine-in, collection, and delivery available."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+
+ {children}
+
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 97a7fdf..be9ca17 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -102,13 +102,13 @@ export default function HomePage() {