Add header component with responsive navigation

This commit is contained in:
2026-01-25 02:32:33 +01:00
parent 7d9bd43102
commit c97393c751
14 changed files with 1363 additions and 75 deletions

11
app/(backend)/page.tsx Normal file
View File

@@ -0,0 +1,11 @@
import { Button } from "@/components/ui/button";
const Home = () => {
return (
<div className="flex min-h-screen home-wrapper">
<Button>Backend Home Page</Button>
</div>
)
}
export default Home;