mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
22 lines
455 B
TypeScript
22 lines
455 B
TypeScript
import "./globals.css";
|
|
import { App } from "./App";
|
|
import { ThemeModeScript } from "flowbite-react";
|
|
|
|
export const metadata = {
|
|
title: {
|
|
template: 'AniX | %s',
|
|
default: 'AniX',
|
|
},
|
|
description: "Generated by create next app",
|
|
};
|
|
|
|
export default function RootLayout({ children }) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<head>
|
|
<ThemeModeScript />
|
|
</head>
|
|
<App>{children}</App>
|
|
</html>
|
|
);
|
|
}
|