diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index f617cb7..181dd57 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,59 +1,28 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({
- variable: "--font-source-sans-3", subsets: ["latin"]
+const geistMono = Geist_Mono({
+ variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "Toasted Cafe Meerut | Fresh Rolls, Snacks & Café Food", description: "Toasted Cafe - Best café in Meerut serving fresh rolls, Chinese, Continental dishes & beverages. 4.9★ rated. Order online or call now!", keywords: "cafe in Meerut, best cafe Meerut, cafe near me, snacks cafe, Chinese food cafe, rolls restaurant, fast casual dining", metadataBase: new URL("https://toastedcafe.com"),
- alternates: {
- canonical: "https://toastedcafe.com"
- },
- openGraph: {
- title: "Toasted Cafe - Fresh Food & Coffee in Meerut", description: "Discover Toasted Cafe - your go-to destination for fresh rolls, snacks, and café beverages in Meerut", url: "https://toastedcafe.com", siteName: "Toasted Cafe", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/restaurant-with-tables-chairs-street_1127-2172.jpg", alt: "cafe exterior storefront restaurant entrance modern cafe"
- }
- ]
- },
- twitter: {
- card: "summary_large_image", title: "Toasted Cafe - Fresh Food in Meerut", description: "Best café in Meerut for rolls, snacks & beverages. 4.9★ rated.", images: ["http://img.b2bpic.net/free-photo/restaurant-with-tables-chairs-street_1127-2172.jpg"]
- },
- robots: {
- index: true,
- follow: true
- }
-};
+ title: "Create Next App", description: "Generated by create next app"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+
+ {children}
+
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index cdac52b..2c361e2 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -126,7 +126,7 @@ export default function LandingPage() {