Rename frontend to webui

This commit is contained in:
lumijiez
2025-04-05 21:56:49 +03:00
parent 7208329a0e
commit 884a07d961
17 changed files with 0 additions and 0 deletions

29
webui/src/app/layout.js Normal file
View File

@@ -0,0 +1,29 @@
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata = {
title: "Create Next App",
description: "Generated by create next app",
};
export default function RootLayout({ children }) {
return (
<html lang="en">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
{children}
</body>
</html>
);
}