diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 03aac46..d84c7a6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,17 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; import "./globals.css"; -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); - export const metadata: Metadata = { - title: "Webild Design - Award-Winning Digital Design Agency", description: - "Transform your brand with exceptional web design and development services. We create stunning digital experiences that drive engagement and results."}; + title: "Webild Design - Award-Winning Digital Design Agency", description: "Transform your brand with exceptional web design, development, and digital strategy. Award-winning agency specializing in stunning user experiences."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - {children} - + + {children} - ); }