diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6874ec1..e949289 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,53 +1,20 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Govind Creative | Web Design & Development Agency", description: "Elevate your brand with innovative web design and powerful development. We craft digital experiences that drive real business results for SMBs.", keywords: "web design, web development, digital agency, brand design, SaaS design, e-commerce websites, creative solutions", metadataBase: new URL("https://govindcreative.com"), - alternates: { - canonical: "https://govindcreative.com" - }, - openGraph: { - title: "Govind Creative | Divine Design, Powerful Websites", description: "Transform your digital presence with innovative web design and strategic development solutions tailored for your business growth.", url: "https://govindcreative.com", siteName: "Govind Creative", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWnMuy9ZkPIuGo4pBk1IACSsu8/a-modern-web-design-agency-dashboard-sho-1772717274448-b01a8f21.png", alt: "Govind Creative web design agency showcase" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Govind Creative | Web Design & Development", description: "Digital experiences that elevate your brand and drive real business results.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWnMuy9ZkPIuGo4pBk1IACSsu8/a-modern-web-design-agency-dashboard-sho-1772717274448-b01a8f21.png"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Govind Creative - Digital Design & Development Agency", description: "Transform your vision into powerful digital experiences with our innovative design and development services."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}