diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 85b3634..dbdad47 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Roboto } 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 roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Alex Pizza | Fresh Pizza & Kebabs Delivered in Birkenhead", description: "Order delicious pizza, kebabs, burgers & more online from Alex Pizza. Fresh ingredients, fast delivery across Birkenhead. 10% OFF all online orders!", keywords: "pizza birkenhead, pizza delivery birkenhead, takeaway birkenhead, kebab takeaway birkenhead, pizza near me, online food ordering", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Alex Pizza | Fresh Pizza Delivered Fast", description: "Order hot pizza, kebabs, burgers and more from Birkenhead's favorite takeaway. 10% off online orders. Free delivery on £15+ orders.", siteName: "Alex Pizza", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/dinner-set-with-pizza-salad-lemonade-tomato-soup_140725-7831.jpg", alt: "Fresh pizza and appetizers"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Alex Pizza | Fresh Pizza Delivered Fast", description: "Order hot pizza, kebabs, burgers and more from Birkenhead's favorite takeaway. 10% off online orders.", images: ["http://img.b2bpic.net/free-photo/dinner-set-with-pizza-salad-lemonade-tomato-soup_140725-7831.jpg"], - }, -}; + title: "Alex Pizza - Fresh Pizza Delivered Fast in Birkenhead", description: "Order hot pizza, kebabs, burgers and more delivered straight to your door. Over 10 years of serving Birkenhead with quality, fresh ingredients and generous portions."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}