5 Commits

Author SHA1 Message Date
1148f9038e Update src/app/page.tsx 2026-03-05 02:53:06 +00:00
6a1ccd3adc Update src/app/layout.tsx 2026-03-05 02:53:06 +00:00
85c5197b11 Merge version_1 into main
Merge version_1 into main
2026-03-05 02:51:26 +00:00
00fade6fd2 Merge version_1 into main
Merge version_1 into main
2026-03-05 02:50:41 +00:00
754d68568e Merge version_1 into main
Merge version_1 into main
2026-03-05 02:49:41 +00:00
2 changed files with 13 additions and 30 deletions

View File

@@ -1,44 +1,28 @@
import type { Metadata } from "next";
import { Mulish } from "next/font/google";
import { Inter } 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 mulish = Mulish({
variable: "--font-mulish", subsets: ["latin"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Emergency Plumber Norwich | 24 Hour Service | Norfolk Plumbing", description: "24/7 emergency plumber in Norwich. Fast, reliable plumbing services including blocked drains, leak repairs & tap replacement. Call 07950 471139 now.", keywords: "emergency plumber Norwich, 24 hour plumber Norwich, blocked drain Norwich, plumbing services Norfolk, leak repair Norwich", metadataBase: new URL("https://norfolkplumbing.co.uk"),
alternates: {
canonical: "https://norfolkplumbing.co.uk"},
openGraph: {
title: "Emergency Plumber Norwich | 24 Hour Plumbing Service", description: "Fast, reliable emergency plumbing across Norwich and Norfolk. Available 24/7. Call 07950 471139.", url: "https://norfolkplumbing.co.uk", siteName: "Norfolk Plumbing", type: "website"},
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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${mulish.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1406,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -54,7 +54,7 @@ export default function LandingPage() {
background={{ variant: "radial-gradient" }}
buttons={[
{
text: "📞 Call Now 07950 471139", href: "tel:07950471139"
text: "📞 Call Now", href: "tel:07950471139"
},
{
text: "Request a Call Back", href: "#contact"