diff --git a/src/app/layout.tsx b/src/app/layout.tsx index be5481a..b63371f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Webild - Creative Web Agency | Digital Design & Development", description: "Award-winning creative agency specializing in web design, branding, and digital strategy. Transform your vision into compelling digital experiences.", keywords: "web design agency, digital strategy, branding, UX design, web development, creative agency", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Webild - Creative Web Agency", description: "Transform your vision into digital reality with award-winning design and strategy.", type: "website", siteName: "Webild", images: [ - { - url: "http://img.b2bpic.net/free-vector/business-dashboard-user-panel_23-2148359613.jpg", alt: "creative agency dashboard design"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Webild - Creative Web Agency", description: "Award-winning digital solutions for your business", images: ["http://img.b2bpic.net/free-vector/business-dashboard-user-panel_23-2148359613.jpg"], - }, -}; + title: "Webild - Creative Digital Agency", description: "Transform your vision into digital reality with cutting-edge design and development services."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}