36 lines
903 B
TypeScript
36 lines
903 B
TypeScript
import type { Metadata } from "next";
|
|
import { Plus_Jakarta_Sans, JetBrains_Mono } from "next/font/google";
|
|
import "./globals.css";
|
|
|
|
const jakarta = Plus_Jakarta_Sans({
|
|
subsets: ["latin"],
|
|
weight: ["400", "500", "600", "700"],
|
|
variable: "--font-jakarta",
|
|
display: "swap",
|
|
});
|
|
|
|
const mono = JetBrains_Mono({
|
|
subsets: ["latin"],
|
|
weight: ["400", "500"],
|
|
variable: "--font-mono",
|
|
display: "swap",
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Neireva — Get in touch",
|
|
description:
|
|
"Real estate management, reimagined. Leave your details and we'll reach out.",
|
|
robots: { index: false, follow: false }, // temporary conference page
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en" className={`${jakarta.variable} ${mono.variable}`}>
|
|
<body className="font-sans">{children}</body>
|
|
</html>
|
|
);
|
|
}
|