From add5644ecbec5d41a887f3d8b4c4e5c1acb0ee5e Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 01:58:55 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1414 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 1414 insertions(+) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e69de29..26c4c86 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -0,0 +1,1414 @@ +import type { Metadata } from "next"; +import { Inter_Tight } from "next/font/google"; +import "./globals.css"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/tag/Tag"; + +const interTight = Inter_Tight({ + variable: "--font-inter-tight", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +}); + +export const metadata: Metadata = { + title: "Precision Code. Unbreakable Design | Web Development", description: "High-end professional web development and design services. Digital presence, custom solutions, and performance optimization."}; + +export default function RootLayout({ + children, +}: { + children: React.ReactNode; +}) { + return ( + + +