feat: initialize inventory management application with Prisma schema, QR scanning, and UI components

This commit is contained in:
2026-04-05 14:27:36 -04:00
parent 6663856ffb
commit 9b746388fd
16 changed files with 2698 additions and 121 deletions

View File

@ -1,25 +1,22 @@
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"],
});
import Navigation from "@/components/Navigation";
export const metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "Inventory Management App",
description: "Track your items reliably with QR integrations",
};
export default function RootLayout({ children }) {
return (
<html lang="en" className={`${geistSans.variable} ${geistMono.variable}`}>
<body>{children}</body>
<html lang="en">
<body>
<div className="app-container">
<Navigation />
<main className="main-content">
{children}
</main>
</div>
</body>
</html>
);
}