5 Commits

Author SHA1 Message Date
cb617944a2 Update src/app/page.tsx 2026-03-05 13:33:06 +00:00
732aa1b91f Update src/app/layout.tsx 2026-03-05 13:33:06 +00:00
740036a5fe Merge version_1 into main
Merge version_1 into main
2026-03-05 13:30:52 +00:00
ef0ba8898d Merge version_1 into main
Merge version_1 into main
2026-03-05 13:29:57 +00:00
2cf0e73fe8 Merge version_1 into main
Merge version_1 into main
2026-03-05 13:28:40 +00:00
2 changed files with 7 additions and 41 deletions

View File

@@ -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>
); );
} }

View File

@@ -93,7 +93,7 @@ export default function LandingPage() {
} }
]} ]}
title="Our Services" title="Our Services"
description="Comprehensive web solutions tailored to elevate your brand and drive measurable growth" description="Each service is designed to increase conversions, reduce bounce rates, and build lasting customer trust. Comprehensive web solutions tailored to elevate your brand and drive measurable growth"
tag="What We Do" tag="What We Do"
tagIcon={CheckCircle} tagIcon={CheckCircle}
textboxLayout="default" textboxLayout="default"