Update src/app/layout.tsx

This commit is contained in:
2026-03-05 10:59:07 +00:00
parent 9ce77a85f6
commit 4dc8193c88

View File

@@ -1,74 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Figtree } 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 figtree = Figtree({
variable: "--font-figtree",
subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Alpha Electricals & Plumbing | Eldoret Services",
description: "Professional electrical and plumbing services in Eldoret and Rift Valley. Installations, repairs, interior fittings. Call +254 712 340453 for free quote.",
keywords: "electrical services Eldoret, plumber Eldoret, electrical installation Kenya, plumbing repair, interior fittings, appliance installation",
metadataBase: new URL("https://alphaelectricals.co.ke"),
alternates: {
canonical: "https://alphaelectricals.co.ke",
},
openGraph: {
title: "Alpha Electricals & Plumbing - Local Service Expert",
description: "Trusted electrical and plumbing solutions in Eldoret. Professional installations, repairs, and appliance sales.",
url: "https://alphaelectricals.co.ke",
siteName: "Alpha Electricals & Plumbing Limited",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/electrician-installer-with-tool-his-hands-working-with-cable-construction-site_169016-5885.jpg",
alt: "Professional electrical service",
},
],
},
twitter: {
card: "summary_large_image",
title: "Alpha Electricals & Plumbing",
description: "Professional electrical and plumbing services in Eldoret",
images: ["http://img.b2bpic.net/free-photo/electrician-installer-with-tool-his-hands-working-with-cable-construction-site_169016-5885.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Alpha Electricals & Plumbing - Eldoret Services", description: "Professional electrical and plumbing services in Eldoret and the Rift Valley region."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1436,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}