2024-09-03 19:42:30 +02:00
|
|
|
import type { Metadata } from "next";
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
import "./globals.css";
|
|
|
|
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
2024-09-03 21:20:04 +02:00
|
|
|
title: "Track Every Day!",
|
|
|
|
description: "A web app for tracking habits, activities and vices.",
|
2024-09-03 19:42:30 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
children,
|
|
|
|
}: Readonly<{
|
|
|
|
children: React.ReactNode;
|
|
|
|
}>) {
|
|
|
|
return (
|
|
|
|
<html lang="en">
|
|
|
|
<body className={inter.className}>{children}</body>
|
|
|
|
</html>
|
|
|
|
);
|
|
|
|
}
|