diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bd84da7..bdd6963 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,47 +1,17 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { DM_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 dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); +import "./styles/globals.css"; export const metadata: Metadata = { - title: "Web Design Agency | Custom Website Design Services", description: "Professional web design services that drive results. We build stunning websites that give customers insight and desire to choose your business.", keywords: "web design, website design, custom web design, agency, web development", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Web Design Agency | Custom Website Design Services", description: "Professional web design services that drive results. We build stunning websites that give customers insight and desire to choose your business.", type: "website", siteName: "Webuild"}, -}; + title: "Webuild - Web Design Agency", description: "Transform your business with stunning, high-performing websites that convert. Web design services for businesses nationwide."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}