diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9c7f8b5..85ec3d6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,15 +1,11 @@ import type { Metadata } from "next"; -import localFont from "next/font/local"; -import "./globals.css"; +import { Inter } from "next/font/google"; +import "@/styles/globals.css"; -const geistSans = localFont({ - src: "./fonts/GeistVF.woff2", variable: "--font-geist-sans", weight: "100 900"}); - -const geistMono = localFont({ - src: "./fonts/GeistMonoVF.woff2", variable: "--font-geist-mono", weight: "100 900"}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "MARGINZ - Enterprise IT Solutions", description: "Premium enterprise IT solutions and digital transformation services"}; + title: "MARGINZ - Enterprise IT Solutions & Digital Transformation", description: "Quality-first development for major enterprises. Precision-engineered digital systems with near-zero friction and maximum uptime."}; export default function RootLayout({ children, @@ -17,25 +13,8 @@ export default function RootLayout({ children: React.ReactNode; }) { return ( - -
- {children} - - + + {children}