23 lines
499 B
JavaScript
23 lines
499 B
JavaScript
import "./globals.css";
|
|
import Navigation from "@/components/Navigation";
|
|
|
|
export const metadata = {
|
|
title: "Inventory Management App",
|
|
description: "Track your items reliably with QR integrations",
|
|
};
|
|
|
|
export default function RootLayout({ children }) {
|
|
return (
|
|
<html lang="en">
|
|
<body>
|
|
<div className="app-container">
|
|
<Navigation />
|
|
<main className="main-content">
|
|
{children}
|
|
</main>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|