first commit

This commit is contained in:
2025-11-23 08:02:54 +01:00
commit afd3881015
52 changed files with 9280 additions and 0 deletions

View File

@ -0,0 +1,11 @@
import TabNavigation from "./TabNavigation";
export default function Layout({ children }: { children: React.ReactNode }) {
return (
<div className="min-h-screen bg-background pb-16">
{children}
<TabNavigation />
</div>
);
}