Update src/app/layout.tsx

This commit is contained in:
2026-02-19 02:40:17 +00:00
parent 758f337ab0
commit bc39233685

View File

@@ -1,9 +1,13 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import "./styles/variables.css";
import "./styles/base.css";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "PerformanceHub - Performance Marketing Agency Amsterdam", description: "Amsterdam-based performance marketing agency specializing in SEO, PPC, and conversion optimization. Drive real results with data-driven strategies."
};
title: "PerformanceHub - Performance Marketing Agency", description: "Amsterdam-based performance marketing agency specializing in SEO, PPC, and conversion optimization."};
export default function RootLayout({
children,
@@ -12,9 +16,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body>
{children}
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1298,4 +1300,4 @@ export default function RootLayout({
</body>
</html>
);
}
}