mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 07:44:38 +00:00
18 lines
325 B
TypeScript
18 lines
325 B
TypeScript
import "./globals.css";
|
|
import { App } from "./App";
|
|
|
|
export const metadata = {
|
|
title: {
|
|
template: 'AniX | %s',
|
|
default: 'AniX',
|
|
},
|
|
description: "Generated by create next app",
|
|
};
|
|
|
|
export default function RootLayout({ children }) {
|
|
return (
|
|
<html lang="en">
|
|
<App>{children}</App>
|
|
</html>
|
|
);
|
|
}
|