|
|
|
|
@@ -1,44 +1,20 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Raleway } from "next/font/google";
|
|
|
|
|
import { Outfit } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
|
|
|
|
|
const raleway = Raleway({
|
|
|
|
|
variable: "--font-raleway", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
const outfit = Outfit({ subsets: ["latin"] });
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Webuild - Web Design & Development Studio", description: "Professional web design and development for businesses. Custom websites, e-commerce, and ongoing support to help your business grow online.", keywords: "web design, web development, custom websites, e-commerce, digital agency", robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true,
|
|
|
|
|
},
|
|
|
|
|
metadataBase: new URL("https://webuild.com"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://webuild.com"},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "Webuild - Web Design & Development Studio", description: "Professional web design and development for businesses. Build stunning websites that convert.", url: "https://webuild.com", siteName: "Webuild", type: "website", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARW3x2rw8IF2jMdw0m9OHUElVB/a-modern-web-design-studio-workspace-wit-1772555742391-781100a1.png", alt: "Webuild web design studio"},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "Webuild - Web Design & Development Studio", description: "Professional web design and development for businesses.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARW3x2rw8IF2jMdw0m9OHUElVB/a-modern-web-design-studio-workspace-wit-1772555742391-781100a1.png"],
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
title: "Webuild - Web Design Studio", description: "Create beautiful, high-performance websites that help businesses grow"};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body className={`${raleway.variable} antialiased`}>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={outfit.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1406,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|