diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1b82367..6817972 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,75 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Poppins } 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 poppins = Poppins({ - variable: "--font-poppins", - subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Creative Web Agency | Web Development & Design", - description: "Professional web design and development services. We create stunning, high-performing websites that drive growth for businesses.", - keywords: "web design, web development, creative agency, website design, digital solutions", - metadataBase: new URL("https://creativewebagency.com"), - alternates: { - canonical: "https://creativewebagency.com", - }, - openGraph: { - title: "Creative Web Agency | Web Development & Design", - description: "Professional web design and development services for modern businesses", - url: "https://creativewebagency.com", - siteName: "Creative Web Agency", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVZXctc17uMFQ7zoTfanEtov5d/a-modern-web-development-dashboard-inter-1772679876736-0b076f50.png", - alt: "Creative Web Agency - Web Development Services", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Creative Web Agency | Web Development & Design", - description: "Professional web design and development services", - images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVZXctc17uMFQ7zoTfanEtov5d/a-modern-web-development-dashboard-inter-1772679876736-0b076f50.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}