mirror of
https://github.com/Radiquum/AniX.git
synced 2025-05-03 19:39:39 +05:00
Frontend: Delete template files. Add Navigation Rail.
This commit is contained in:
parent
cd78429540
commit
84b13a2c80
12 changed files with 1682 additions and 486 deletions
|
@ -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>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue