43 lines
1010 B
TypeScript
43 lines
1010 B
TypeScript
import type { Metadata } from "next";
|
||
import { Manrope, Sora, DM_Sans } from "next/font/google";
|
||
import "./globals.css";
|
||
|
||
const manrope = Manrope({
|
||
variable: "--font-manrope",
|
||
subsets: ["latin"],
|
||
weight: ["400", "500", "600", "700"],
|
||
});
|
||
|
||
const sora = Sora({
|
||
variable: "--font-sora",
|
||
subsets: ["latin"],
|
||
weight: ["400", "500", "600", "700"],
|
||
});
|
||
|
||
const dmSans = DM_Sans({
|
||
variable: "--font-dm-sans",
|
||
subsets: ["latin"],
|
||
weight: ["400", "500", "600", "700"],
|
||
});
|
||
|
||
export const metadata: Metadata = {
|
||
title: "Home 9 – Aiero",
|
||
description:
|
||
"Revolutionizing businesses with cutting-edge AI solutions and groundbreaking innovation. Aiero – AI agency committed to transforming businesses.",
|
||
};
|
||
|
||
export default function RootLayout({
|
||
children,
|
||
}: Readonly<{
|
||
children: React.ReactNode;
|
||
}>) {
|
||
return (
|
||
<html
|
||
lang="en"
|
||
className={`${manrope.variable} ${sora.variable} ${dmSans.variable}`}
|
||
>
|
||
<body suppressHydrationWarning>{children}</body>
|
||
</html>
|
||
);
|
||
}
|