diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 977e5f3..18d8c55 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,61 +1,20 @@ import type { Metadata } from "next"; -import { Inter_Tight } 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 interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); - -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: "WW Digital | High-Performance Web Design & Development Agency", description: "Fast, reliable web design and development services. WW Digital builds high-converting websites for B2B, SaaS, and e-commerce businesses. Proven expertise with 500+ projects.", keywords: "web design, web development, agency, SaaS development, e-commerce websites, high-performance websites, digital solutions", metadataBase: new URL("https://www.wwdigital.com"), - alternates: { - canonical: "https://www.wwdigital.com" - }, - openGraph: { - title: "WW Digital | Web Design & Development", description: "High-performance websites that convert. Fast. Reliable. Experienced.", url: "https://www.wwdigital.com", siteName: "WW Digital", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbpbpvRWohWkQTiHmuJ0VULfyL/a-modern-sleek-web-dashboard-interface-s-1772871442704-0048fd48.png", alt: "WW Digital - High-performance web development" - } - ], - type: "website" - }, - twitter: { - card: "summary_large_image", title: "WW Digital | Web Design & Development Agency", description: "Fast, reliable web design and development services. Let's upgrade your web presence.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbpbpvRWohWkQTiHmuJ0VULfyL/a-modern-sleek-web-dashboard-interface-s-1772871442704-0048fd48.png"] - }, - robots: { - index: true, - follow: true - } -}; + title: "WW Digital | Web Design & Development", description: "Fast. Reliable. Experienced. Your Web Presence, Upgraded. High-performance websites designed to convert."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}