diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 42fa6ab..cfe8634 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,53 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { DM_Sans } 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 { DM_Sans } 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 dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Terrazzo GraniTech Nederland | Premium Surfaces", + description: "Premium terrazzo surfaces with 51 colours. Trusted by architects and designers. Phone: +31 6 45588802", + keywords: "terrazzo Nederland, terrazzo vloer, terrazzo wand, terrazzo badkamer, terrazzo design, materialen", + metadataBase: new URL("https://terrazzogranitechdesign.nl"), + alternates: { + canonical: "https://terrazzogranitechdesign.nl", + }, + openGraph: { + title: "Terrazzo GraniTech - Premium Terrazzo Surfaces", + description: "Innovative terrazzo materials for architects, designers, and builders across Europe.", + url: "https://terrazzogranitechdesign.nl", + siteName: "Terrazzo GraniTech Nederland", + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "Terrazzo GraniTech | Premium Surfaces", + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +56,9 @@ export default function RootLayout({ return ( - + {children}