Update src/app/layout.tsx

This commit is contained in:
2026-03-05 14:35:11 +00:00
parent 039bddb386
commit 06cb0dd3d7

View File

@@ -1,50 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Lato } 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 lato = Lato({
variable: "--font-lato", subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Autoriseret VVS Espergærde Døgnservice 24/7", description: "VVS installation, reparation og energivenlige løsninger i Espergærde. Hurtig udrykning, 24/7 service. Ring 53 79 79 02 nu.", keywords: "VVS Espergærde, autoriseret VVS, rørarbejde, VVS reparation, energivenlige løsninger, døgnservice", robots: {
index: true,
follow: true,
},
openGraph: {
type: "website", title: "Autoriseret VVS Espergærde Døgnservice 24/7", description: "VVS installation, reparation og energivenlige løsninger. Hurtig, troværdig service i Espergærde og omegn.", siteName: "Nordøstkystens VVS", url: "https://nordoestkystens-vvs.dk"},
twitter: {
card: "summary_large_image", title: "Autoriseret VVS Espergærde Døgnservice 24/7", description: "VVS installation, reparation og energivenlige løsninger. Ring 53 79 79 02."},
};
title: "Nordøstkystens VVS - Autoriseret VVS i Espergærde", description: "Autoriseret VVS-installatør i Espergærde med 24/7 døgnservice. Installation, reparation og energivenlige VVS-løsninger for private og erhverv."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
>
<Tag />
{children}
<html lang="da">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1412,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}