eduproj2/app/layout.tsx

28 lines
617 B
TypeScript
Raw Normal View History

2023-08-01 18:53:51 -04:00
// import './globals.css'
import "normalize.css";
import "@blueprintjs/core/lib/css/blueprint.css";
import "@blueprintjs/icons/lib/css/blueprint-icons.css";
import Navbar from "@/components/layout/Navbar";
2023-08-01 18:38:06 -04:00
export const metadata = {
2023-08-01 18:53:51 -04:00
title: "Create Next App",
description: "Generated by create next app",
};
2023-08-01 18:38:06 -04:00
export default function RootLayout({
children,
}: {
2023-08-01 18:53:51 -04:00
children: React.ReactNode;
2023-08-01 18:38:06 -04:00
}) {
return (
<html lang="en">
<body>
<main className="min-h-screen bg-background flex flex-col items-center">
2023-08-01 18:53:51 -04:00
<Navbar />
2023-08-01 18:38:06 -04:00
{children}
</main>
</body>
</html>
2023-08-01 18:53:51 -04:00
);
2023-08-01 18:38:06 -04:00
}