mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
21 lines
447 B
JavaScript
21 lines
447 B
JavaScript
import "./globals.css";
|
|
import "beercss";
|
|
import "material-dynamic-colors";
|
|
|
|
import { NavigationRail } from "@/components/NavigationRail";
|
|
|
|
export const metadata = {
|
|
title: "AniX",
|
|
description: "Unofficial web app for anixart",
|
|
};
|
|
|
|
export default function RootLayout({ children }) {
|
|
return (
|
|
<html lang="en">
|
|
<body>
|
|
<NavigationRail />
|
|
<main className="responsive">{children}</main>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|