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}