diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 89ff5e4..946f51c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,17 @@ import type { Metadata } from "next"; -import { Figtree } from "next/font/google"; -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 figtree = Figtree({ - variable: "--font-figtree", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); export const metadata: Metadata = { - title: "Webild - Creative Web Agency | Award-Winning Design & Strategy", description: "Transform your brand with Webild, an award-winning creative agency specializing in digital strategy, design, and web development. 200+ successful projects.", keywords: "creative agency, web design, digital strategy, branding, UX/UI design, web development", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Webild - Creative Web Agency | Award-Winning Design & Strategy", description: "Transform your brand with strategic creativity and cutting-edge design. Discover how we deliver measurable results.", url: "https://webild.io", siteName: "Webild", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AS2qznHM8QaLEgXCvvp46EdPRu/a-modern-creative-agency-website-interfa-1772571957955-c076be65.png", alt: "Webild Creative Agency"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Webild - Creative Web Agency", description: "Award-winning agency delivering creative solutions that transform brands", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AS2qznHM8QaLEgXCvvp46EdPRu/a-modern-creative-agency-website-interfa-1772571957955-c076be65.png"], - }, -}; + title: "Webild - Creative Solutions for Your Brand", description: "Award-winning creative agency delivering innovative digital experiences that transform brands and drive engagement."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}