|
|
|
@@ -1,53 +1,20 @@
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
import { Public_Sans } from "next/font/google";
|
|
|
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
import "./globals.css";
|
|
|
|
import "./globals.css";
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const publicSans = Public_Sans({
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
variable: "--font-public-sans", subsets: ["latin"],
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
|
|
|
variable: "--font-inter", subsets: ["latin"],
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
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"),
|
|
|
|
title: "Govind Creative - Digital Design & Development Agency", description: "Transform your vision into powerful digital experiences with our innovative design and development services."};
|
|
|
|
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
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
export default function RootLayout({
|
|
|
|
children,
|
|
|
|
children,
|
|
|
|
}: Readonly<{
|
|
|
|
}: {
|
|
|
|
children: React.ReactNode;
|
|
|
|
children: React.ReactNode;
|
|
|
|
}>) {
|
|
|
|
}) {
|
|
|
|
return (
|
|
|
|
return (
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
<html lang="en">
|
|
|
|
<ServiceWrapper>
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
<body
|
|
|
|
|
|
|
|
className={`${publicSans.variable} ${inter.variable} antialiased`}
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<Tag />
|
|
|
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script
|
|
|
|
<script
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
__html: `
|
|
|
|
__html: `
|
|
|
|
@@ -1415,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
}}
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
</body>
|
|
|
|
</body>
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
|
|
|
</html>
|
|
|
|
</html>
|
|
|
|
);
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|