From 4dc84dc2caf769b85bf30e03a363c7a923a93be4 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 23:30:12 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 51 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 45 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6eeb4e0..9e3094f 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: "Falafilo - Fresh Falafel & Small Plates in Halden", description: "Authentic falafel and Mediterranean small plates in Halden, Norway. Fresh daily, kerbside pickup available. 5-star rated. Call +47 46 12 75 65.", keywords: "falafel Halden, restaurant Halden, cheap food Halden, falafel near me, small plates Norway, Mediterranean food", metadataBase: new URL("https://falafilo.no"), - alternates: { - canonical: "https://falafilo.no"}, - openGraph: { - title: "Falafilo - Fresh Falafel & Small Plates in Halden", description: "Experience authentic falafel and Mediterranean small plates at Falafilo. 5-star rated, fresh daily, kerbside pickup available.", url: "https://falafilo.no", siteName: "Falafilo", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/table-set-dinning-table_1339-3459.jpg", alt: "Falafilo restaurant interior"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Falafilo - Fresh Falafel & Small Plates in Halden", description: "Authentic falafel and Mediterranean small plates. 5-star rated. Order now!", images: ["http://img.b2bpic.net/free-photo/table-set-dinning-table_1339-3459.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Falafilo - Fresh Small Plates & Authentic Falafel in Halden", description: "Discover authentic falafel and fresh small plates in Halden. Quick service, friendly vibes, perfect for lunch or casual dinner."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}