Added Navbar

This commit is contained in:
2026-02-19 15:05:32 +05:30
commit 13ca4a144b
22 changed files with 12295 additions and 0 deletions

6
frontend/app/page.tsx Normal file
View File

@@ -0,0 +1,6 @@
import { redirect } from "next/navigation";
export default function HomePage() {
// Redirect immediately to /all-customers
redirect("/all-customers");
}