From d5bc1cd097312726ae899ee3d5a8e8a59b075f49 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 2 Mar 2026 00:30:19 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 45 +++++++++++---------------------------------- 1 file changed, 11 insertions(+), 34 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 096ab25..59044d3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,46 +1,24 @@ import type { Metadata } from "next"; -import { Cabin } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/variables.css"; +import "./styles/base.css"; -const cabin = Cabin({ - variable: "--font-cabin", subsets: ["latin"], +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Webild | Web Design & Development Agency Estonia", description: "Award-winning web agency in Estonia. We create stunning websites, e-commerce solutions, and digital experiences that drive growth. 150+ projects delivered.", keywords: "web design, web development, Estonia, digital agency, e-commerce, branding, UI/UX design", metadataBase: new URL("https://webild.ee"), - alternates: { - canonical: "https://webild.ee" - }, - openGraph: { - title: "Webild - Digital Solutions for Modern Businesses", description: "We craft stunning websites and digital experiences that drive growth. Award-winning Estonian web agency.", url: "https://webild.ee", siteName: "Webild", type: "website", images: [{ - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AJoeL1kj3KAGCFdKZaVyRTrBRV/a-modern-sleek-web-design-dashboard-inte-1772410620806-a7d4fdfe.png", alt: "Webild - Web Design & Development" - }] - }, - twitter: { - card: "summary_large_image", title: "Webild | Web Design & Development Agency Estonia", description: "Award-winning web agency creating stunning digital experiences. 150+ projects delivered.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AJoeL1kj3KAGCFdKZaVyRTrBRV/a-modern-sleek-web-design-dashboard-inte-1772410620806-a7d4fdfe.png"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Webild - Digital Solutions for Modern Businesses", description: "We craft stunning websites and digital experiences that drive growth. From strategy to launch, we transform your vision into reality with cutting-edge technology and creative excellence."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}