diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 434507d..d28143e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,74 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito_Sans } 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 nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Web Design for Local Businesses | Professional Websites That Convert", - description: "We build fast, professional websites for restaurants, hotels, clinics, and service businesses. Get more customers online with our proven web design solutions.", - keywords: "web design, website design, local business websites, restaurant website, hotel website, clinic website, web development, professional website builder", - metadataBase: new URL("https://webuild.com"), - alternates: { - canonical: "https://webuild.com" - }, - openGraph: { - title: "Professional Website Design for Local Businesses", - description: "Build your online presence with modern, fast websites designed for restaurants, hotels, clinics, and service companies.", - url: "https://webuild.com", - siteName: "Webuild", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZ4zxmNcqiWsl4H9fXTecVOmEs/modern-professional-website-dashboard-in-1772787114900-2a89b41f.png", - alt: "Professional website showcase" - } - ] - }, - twitter: { - card: "summary_large_image", - title: "Professional Website Design for Local Businesses", - description: "Modern websites that bring customers to your door. Restaurants, hotels, clinics, services.", - images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZ4zxmNcqiWsl4H9fXTecVOmEs/modern-professional-website-dashboard-in-1772787114900-2a89b41f.png"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Webuild - Professional Websites for Local Businesses", description: "Modern, fast websites built for restaurants, hotels, clinics, and service companies. Get more customers online."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}