89 lines
2.7 KiB
TypeScript
89 lines
2.7 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Halant } 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 { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
import Tag from "@/tag/Tag";
|
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
|
|
|
const halant = Halant({
|
|
variable: "--font-halant",
|
|
subsets: ["latin"],
|
|
weight: ["300", "400", "500", "600", "700"],
|
|
});
|
|
|
|
const inter = Inter({
|
|
variable: "--font-inter",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
const manrope = Manrope({
|
|
variable: "--font-manrope",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
const dmSans = DM_Sans({
|
|
variable: "--font-dm-sans",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "BUILDNEXTTECH - Premium Web & Mobile App Development",
|
|
description: "Premium freelance web development, mobile app creation, and design services. Transform your vision into powerful digital solutions that drive business growth.",
|
|
keywords: "web development, mobile app development, e-commerce, full stack development, app design, tech solutions, startup development",
|
|
metadataBase: new URL("https://buildnexttech.com"),
|
|
alternates: {
|
|
canonical: "https://buildnexttech.com",
|
|
},
|
|
openGraph: {
|
|
title: "BUILDNEXTTECH - Premium Digital Solutions",
|
|
description: "Web development, mobile apps, and design services for ambitious businesses.",
|
|
url: "https://buildnexttech.com",
|
|
siteName: "BUILDNEXTTECH",
|
|
type: "website",
|
|
images: [
|
|
{
|
|
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AgPXwUFq76t1iUUPYMowkPcCds/a-stunning-modern-web-development-dashbo-1774112238550-dc8aaf4a.png",
|
|
alt: "BUILDNEXTTECH - Web Development Services",
|
|
},
|
|
],
|
|
},
|
|
twitter: {
|
|
card: "summary_large_image",
|
|
title: "BUILDNEXTTECH - Premium Digital Solutions",
|
|
description: "Transform your vision into powerful web and mobile applications.",
|
|
images: [
|
|
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AgPXwUFq76t1iUUPYMowkPcCds/a-stunning-modern-web-development-dashbo-1774112238550-dc8aaf4a.png",
|
|
],
|
|
},
|
|
robots: {
|
|
index: true,
|
|
follow: true,
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body
|
|
className={`${halant.variable} ${inter.variable} ${manrope.variable} ${dmSans.variable} antialiased`}
|
|
>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
} |