From 4aeeb7d86eaac0bd3ff89cd3aed3c167c6c42fab Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 12:07:16 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0b5a250..7ddc7fc 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,11 +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: "Xenko | Web Design, Software, & Branding", description: "We build websites, software, and brands that elevate your business. Fast delivery, transparent pricing, long-term support."}; + title: "Xenko - Web Development, Software & Branding", description: "Build websites, software, and brands that elevate your business"}; export default function RootLayout({ children, @@ -14,7 +16,9 @@ export default function RootLayout({ }) { return ( - {children} + + {children} +