mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
Fix undefined api call Simplify some parts Better theme management Add color picker (dynamic themes wohoo) Add missing lists keys
15 lines
326 B
JavaScript
15 lines
326 B
JavaScript
import "./globals.css";
|
|
import {App} from "@/app/App"
|
|
|
|
export const metadata = {
|
|
title: "AniX",
|
|
description: "Неофициальное веб приложение для anixart",
|
|
};
|
|
|
|
export default async function RootLayout({ children }) {
|
|
return (
|
|
<html lang="ru">
|
|
<App>{children}</App>
|
|
</html>
|
|
);
|
|
}
|