From 4cc504218e87f33fac1cf907661b5581f6ef4dc0 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 20:14:35 +0000 Subject: [PATCH 1/5] Update src/app/layout.tsx --- src/app/layout.tsx | 44 ++++++++++---------------------------------- 1 file changed, 10 insertions(+), 34 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9cf4f33..dc24c69 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,47 +1,24 @@ import type { Metadata } from "next"; -import { Inter_Tight } from "next/font/google"; +import { Poppins } from "next/font/google"; +import "./styles/variables.css"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const interTight = Inter_Tight({ - variable: "--font-inter-tight", - subsets: ["latin"], +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Webild - Professionell Byggfirma i Stockholm", - description: "Webild erbjuder expertrenovering, nybyggnation och totalentreprenad. 10+ års erfarenhet. Kostnadsfri offert. ROT-avdrag möjligt.", - keywords: "byggfirma stockholm, renovering, nybyggnation, badrum, kök, fasadarbete, tal entreprenad", - metadataBase: new URL("https://webild.se"), - alternates: { - canonical: "https://webild.se", - }, - openGraph: { - title: "Webild - Din Partner för Byggprojekt", - description: "Professionella byggtjänster från planering till slutbesiktning. 10+ års erfarenhet.", - siteName: "Webild", - type: "website", - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Webild - Modern Professional Construction Company", description: "Professional construction services with warm orange accents and clean typography. Expert builders delivering quality projects."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}