routes erweitert

This commit is contained in:
Husky
2025-09-08 19:45:21 +02:00
parent 0d6e575fa0
commit 185f72f515
22 changed files with 455 additions and 7 deletions

View File

@@ -0,0 +1,14 @@
import React from "react";
type Props = {
children: React.ReactNode;
className?: string;
};
export function Page({ children, className }: Props) {
return (
<div className={`flex w-full flex-col gap-6 p-6 ${className || ""}`}>
{children}
</div>
);
}