From bc3923368576e30ede410fc6d5e596e44959d85a Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Feb 2026 02:40:17 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 832d5a5..c2bce47 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - {children} - + {children}