Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-08 15:58:46 +00:00
2 changed files with 8 additions and 44 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1417,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -46,8 +46,8 @@ export default function AlexPizzaLanding() {
description="Fresh Pizza Delivered Fast in Birkenhead. 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."
background={{ variant: "plain" }}
buttons={[
{ text: "📞 Call Now", href: "tel:+441234567890" },
{ text: "🍕 Order Online", href: "#menu" }
{ text: "Order Online Now", href: "#menu" },
{ text: "📞 Call Now", href: "tel:+441234567890" }
]}
layoutOrder="default"
imageSrc="http://img.b2bpic.net/free-photo/dinner-set-with-pizza-salad-lemonade-tomato-soup_140725-7831.jpg"