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

View File

@@ -0,0 +1,17 @@
import { Button } from "@/components/ui/button";
const page = () => {
return (
<div>
<p className="text-4xl font-medium">Customer List</p>
<div>
<p>Search Bar</p>
<Button>Add Customer</Button>
</div>
<div>A table of customers</div>
</div>
);
};
export default page;