30 lines
591 B
TypeScript
30 lines
591 B
TypeScript
import type { Metadata } from "next";
|
|
import Navbar from "@/components/navbar";
|
|
import { Inter } from "next/font/google";
|
|
import "./globals.css";
|
|
|
|
const inter = Inter({
|
|
subsets: ["latin"],
|
|
variable: "--font-inter",
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Tremor Tracker",
|
|
description: "Generated by tim",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<body className={`${inter.variable} antialiased`}>
|
|
<Navbar></Navbar>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|