mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 07:44:38 +00:00
15 lines
329 B
JavaScript
15 lines
329 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>
|
|
);
|
|
}
|