mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-30 09:59:41 +05:00
Merge remote-tracking branch 'origin/feat_player'
This commit is contained in:
parent
bb437fe7ca
commit
25e31a7799
62 changed files with 1508 additions and 701 deletions
18
app/layout.tsx
Normal file
18
app/layout.tsx
Normal file
|
@ -0,0 +1,18 @@
|
|||
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>
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue