|
|
|
|
@@ -1,60 +1,26 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Manrope } from "next/font/google";
|
|
|
|
|
import { DM_Sans } from "next/font/google";
|
|
|
|
|
import { Geist, Geist_Mono } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
|
|
|
|
|
const manrope = Manrope({
|
|
|
|
|
variable: "--font-manrope",
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
const geist = Geist({
|
|
|
|
|
variable: "--font-geist-sans", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const dmSans = DM_Sans({
|
|
|
|
|
variable: "--font-dm-sans",
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
const geistMono = Geist_Mono({
|
|
|
|
|
variable: "--font-geist-mono", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Rantzoid Digital | Creative Design & Development Agency",
|
|
|
|
|
description: "Transform your digital presence with Rantzoid Digital. Award-winning agency specializing in web design, development, and strategic marketing solutions.",
|
|
|
|
|
keywords: "digital agency, web design, development, marketing, brand strategy, innovation",
|
|
|
|
|
metadataBase: new URL("https://rantzoid.digital"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://rantzoid.digital",
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "Rantzoid Digital | Creative Design & Development Agency",
|
|
|
|
|
description: "Transform your digital presence with cutting-edge design, development, and strategic marketing solutions.",
|
|
|
|
|
type: "website",
|
|
|
|
|
siteName: "Rantzoid Digital",
|
|
|
|
|
images: [
|
|
|
|
|
{
|
|
|
|
|
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARMze1HCNRGPBCThFDTfhr51NQ/a-modern-digital-agency-dashboard-displa-1772551279420-ff3e4e74.png",
|
|
|
|
|
alt: "Rantzoid Digital - Digital Agency",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image",
|
|
|
|
|
title: "Rantzoid Digital | Creative Design & Development Agency",
|
|
|
|
|
description: "Award-winning digital agency delivering exceptional web design, development, and marketing solutions.",
|
|
|
|
|
images: [
|
|
|
|
|
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARMze1HCNRGPBCThFDTfhr51NQ/a-modern-digital-agency-dashboard-displa-1772551279420-ff3e4e74.png",
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
title: "Create Next App", description: "Generated by create next app"};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
|
|
|
|
|
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<script
|
|
|
|
|
@@ -1426,4 +1392,4 @@ export default function RootLayout({
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|