3 Commits

Author SHA1 Message Date
dfb71bed00 Update src/app/layout.tsx 2026-03-03 16:11:14 +00:00
1b4b33d04a Merge version_2 into main
Merge version_2 into main
2026-03-03 15:54:14 +00:00
bb8026a8e0 Merge version_2 into main
Merge version_2 into main
2026-03-03 15:51:05 +00:00

View File

@@ -1,54 +1,21 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import { Source_Sans_3 } from "next/font/google"; import "./styles/variables.css";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const inter = Inter({ subsets: ["latin"] });
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3", subsets: ["latin"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Webuild - Web Development & Design Studio", description: "Custom websites and web applications built for growth. Expert web developers and designers creating digital solutions.", keywords: "web development, web design, custom websites, web applications, digital solutions", robots: { title: "Webuild - Web Development Studio", description: "Custom web development and design services for startups and businesses"};
index: true,
follow: true,
},
openGraph: {
title: "Webuild - Web Development Studio", description: "Build stunning digital experiences with our expert team of developers and designers", type: "website", siteName: "Webuild", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARPm31BXjFGO3byPj4ZVpdIhR8/a-modern-sleek-web-development-dashboard-1772552655029-c2724723.png", alt: "Webuild web development studio"},
],
},
twitter: {
card: "summary_large_image", title: "Webuild - Web Development & Design", description: "Expert web development and design services", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARPm31BXjFGO3byPj4ZVpdIhR8/a-modern-sleek-web-development-dashboard-1772552655029-c2724723.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={inter.className}>{children}
<body
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1416,7 +1383,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }