Frontend: Delete template files. Add Navigation Rail.

This commit is contained in:
Kentai Radiquum 2024-04-19 14:58:14 +05:00
parent cd78429540
commit 84b13a2c80
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
12 changed files with 1682 additions and 486 deletions

View file

@ -1,17 +1,21 @@
import { Inter } from "next/font/google";
import "./globals.css";
import "beercss";
import "material-dynamic-colors";
const inter = Inter({ subsets: ["latin"] });
import { NavigationRail } from "@/components/NavigationRail";
export const metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "AniX",
description: "Unofficial web app for anixart",
};
export default function RootLayout({ children }) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
<body>
<NavigationRail />
<main className="responsive">{children}</main>
</body>
</html>
);
}