diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9b64f44..81ccb47 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Inter_Tight } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Inter_Tight } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const interTight = Inter_Tight({ variable: "--font-inter-tight", @@ -20,6 +24,32 @@ const interTight = Inter_Tight({ weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); +export const metadata: Metadata = { + title: "Request a Quote - Eco-Engineering Solutions Ltd", + description: "Request a customized quote for telecommunications, ICT, power systems, environmental management, and biomedical equipment engineering solutions from Eco-Engineering Solutions Ltd.", + keywords: "engineering quote, telecom solutions, ICT infrastructure, power systems, environmental engineering, biomedical equipment, Tanzania", + metadataBase: new URL("https://eesltd.co.tz"), + alternates: { + canonical: "https://eesltd.co.tz/request-quote", + }, + openGraph: { + title: "Request a Quote - Eco-Engineering Solutions Ltd", + description: "Get a professional engineering quote for your infrastructure project.", + type: "website", + url: "https://eesltd.co.tz/request-quote", + siteName: "Eco-Engineering Solutions Ltd", + }, + twitter: { + card: "summary_large_image", + title: "Request a Quote - Eco-Engineering Solutions Ltd", + description: "Get a professional engineering quote for your infrastructure project.", + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +58,9 @@ export default function RootLayout({ return ( - + {children}