subman-nextjs/src/app/layout.tsx

31 lines
626 B
TypeScript
Raw Normal View History

2024-06-11 08:16:34 +00:00
import type { Metadata } from "next";
import { Inter } from "next/font/google";
2024-06-14 09:25:18 +00:00
import { Toaster } from "@/components/ui/toaster";
2024-06-12 12:48:37 +00:00
import "./tailwind.css";
2024-06-11 08:16:34 +00:00
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
2024-06-12 12:59:21 +00:00
title: "Subman",
description: "A self-hosted literary submission tracker."
2024-06-11 08:16:34 +00:00
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
2024-06-11 13:37:22 +00:00
<body className={inter.className}>
<div id="sidebar">
SIDEBAR
</div>
2024-06-14 09:25:18 +00:00
{children}
<Toaster />
</body>
2024-06-11 08:16:34 +00:00
</html>
);
}