9 Commits

Author SHA1 Message Date
204e5dc37c Update src/app/page.tsx 2026-03-04 16:46:46 +00:00
f1c114c03a Update src/app/layout.tsx 2026-03-04 16:46:45 +00:00
d0bac57666 Merge version_2 into main
Merge version_2 into main
2026-03-04 16:44:58 +00:00
1d1c1fbe46 Update src/app/page.tsx 2026-03-04 16:44:54 +00:00
b626b073a8 Update src/app/layout.tsx 2026-03-04 16:44:53 +00:00
6fc9690ade Merge version_1 into main
Merge version_1 into main
2026-03-04 16:43:34 +00:00
71d69dbc83 Merge version_1 into main
Merge version_1 into main
2026-03-04 16:42:33 +00:00
3e35bd7d94 Merge version_1 into main
Merge version_1 into main
2026-03-04 16:41:12 +00:00
ae562b62b1 Merge version_1 into main
Merge version_1 into main
2026-03-04 16:39:58 +00:00
2 changed files with 13 additions and 46 deletions

View File

@@ -1,60 +1,28 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google"; import { Geist, Geist_Mono } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const geist = Geist({
variable: "--font-halant", subsets: ["latin"], variable: "--font-geist-sans", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
}); });
const inter = Inter({ const geistMono = Geist_Mono({
variable: "--font-inter", subsets: ["latin"], variable: "--font-geist-mono", subsets: ["latin"],
});
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Web Design Agency | Professional Website Design Services", description: "Custom web design, development, and branding services for businesses. Transform your online presence with our expert team of designers and developers.", keywords: "web design agency, website design, web development, responsive design, brand design, e-commerce, digital design", robots: { title: "Webild Studio", description: "Transform your vision into digital reality"};
index: true,
follow: true,
},
openGraph: {
title: "Webild Studio - Web Design Agency", description: "Professional web design and development services for businesses of all sizes.", url: "https://webild-studio.com", siteName: "Webild Studio", type: "website", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AULLc0XW0VpwDtaRPhZeIaJAoE/a-stunning-modern-web-design-agency-work-1772642347417-10839d50.png", alt: "Webild Studio - Web Design Portfolio"},
],
},
twitter: {
card: "summary_large_image", title: "Webild Studio - Professional Web Design", description: "Transform your vision into digital reality with expert web design services.", images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AULLc0XW0VpwDtaRPhZeIaJAoE/a-stunning-modern-web-design-agency-work-1772642347417-10839d50.png"],
},
};
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={`${geist.variable} ${geistMono.variable}`}>
<body {children}
className={`${halant.variable} ${inter.variable} ${manrope.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1422,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -62,7 +62,7 @@ export default function LandingPage() {
showDimOverlay={true} showDimOverlay={true}
buttons={[ buttons={[
{ text: "Start Your Project", href: "contact" }, { text: "Start Your Project", href: "contact" },
{ text: "View Our Work", href: "portfolio" }, { text: "See Case Studies", href: "portfolio" },
]} ]}
/> />
</div> </div>