GUI for onix

This commit is contained in:
Mishalabdullah
2024-05-02 21:01:55 +05:30
parent 51557cdac1
commit 4ac9ce8815
42 changed files with 6661 additions and 0 deletions

22
onix-gui/app/layout.js Normal file
View File

@@ -0,0 +1,22 @@
import { Inter } from "next/font/google";
import "./globals.css";
import { ToastContainer, toast } from "react-toastify";
import "react-toastify/dist/ReactToastify.css";
import { Bounce } from "react-toastify";
const inter = Inter({ subsets: ["latin"] });
export const metadata = {
title: "ONIX GUI",
description: "Generated by create next app",
};
export default function RootLayout({ children }) {
return (
<html lang="en">
<body className={inter.className}>
{children}
<ToastContainer />
</body>
</html>
);
}