mirror of
https://github.com/Radiquum/YAMPD.git
synced 2025-05-20 07:39:35 +05:00
20 lines
389 B
TypeScript
20 lines
389 B
TypeScript
import type { Metadata } from "next";
|
|
import "./globals.css";
|
|
import { App } from "./App";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "YAMPD",
|
|
description: "Yet Another (MineCraft) Mod Pack Downloader",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<App>{children}</App>
|
|
</html>
|
|
);
|
|
}
|