You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
729 B

4 weeks ago
import { Inter } from "next/font/google";
import 'bootstrap/dist/css/bootstrap.min.css';
import "./globals.css";
import Navbar from './components/Navbar';
import Notification from './components/Notification';
import { NotificationProvider } from './context/NotificationContext';
const inter = Inter({ subsets: ["latin"] });
export const metadata = {
title: "AirIT ZTP Server",
description: "Update Firmware and config",
};
export default function RootLayout({ children }) {
return (
<html lang="en">
<body className={inter.className}>
<NotificationProvider>
<Navbar />
<Notification />
<main>{children}</main>
</NotificationProvider>
</body>
</html>
);
}

Powered by TurnKey Linux.