diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 54dc6f8..db973b9 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,58 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Poppins } 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 poppins = Poppins({
- variable: "--font-poppins", subsets: ["latin"],
- weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "FlavorFind - Discover & Order Delicious Food Near You", description: "Discover trending dishes, filter by cuisine & price, order from top-rated restaurants. Fast food discovery platform for urban food lovers.", keywords: "food delivery, restaurant discovery, food ordering, local restaurants, food app", metadataBase: new URL("https://flavorfind.com"),
- alternates: {
- canonical: "https://flavorfind.com"},
- robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "FlavorFind - Discover & Order Delicious Food Near You", description: "Explore trending dishes and order from top-rated restaurants in seconds.", url: "https://flavorfind.com", siteName: "FlavorFind", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/serving-burger-background_1321-4511.jpg", alt: "FlavorFind - Food Discovery Platform"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "FlavorFind - Discover & Order Delicious Food Near You", description: "Explore trending dishes and order from top-rated restaurants in seconds.", images: ["http://img.b2bpic.net/free-photo/serving-burger-background_1321-4511.jpg"],
- },
-};
+ title: "FlavorFind - Discover Delicious Food Near You", description: "Explore trending dishes, filter by cuisine and price, and order from top-rated restaurants in seconds."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-