diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ac62f93..3684933 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}