tremor-tracker/src/app/layout.tsx

30 lines
591 B
TypeScript
Raw Normal View History

2025-02-24 12:37:15 +00:00
import type { Metadata } from "next";
2025-03-19 19:20:18 +00:00
import Navbar from "@/components/navbar";
import { Inter } from "next/font/google";
2025-02-24 12:37:15 +00:00
import "./globals.css";
2025-03-19 19:20:18 +00:00
const inter = Inter({
2025-02-24 12:37:15 +00:00
subsets: ["latin"],
2025-03-19 19:20:18 +00:00
variable: "--font-inter",
2025-02-24 12:37:15 +00:00
});
export const metadata: Metadata = {
2025-03-19 19:20:18 +00:00
title: "Tremor Tracker",
description: "Generated by tim",
2025-02-24 12:37:15 +00:00
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
2025-03-19 19:20:18 +00:00
<body className={`${inter.variable} antialiased`}>
<Navbar></Navbar>
2025-02-24 12:37:15 +00:00
{children}
</body>
</html>
);
}