Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| dfb71bed00 | |||
| 1b4b33d04a | |||
| bb8026a8e0 |
@@ -1,54 +1,21 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } 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 { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
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"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
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: {
|
||||
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"],
|
||||
},
|
||||
};
|
||||
title: "Webuild - Web Development Studio", description: "Custom web development and design services for startups and businesses"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1416,7 +1383,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user