master
alex 2024-02-24 22:15:34 +01:00
parent dac70b358a
commit 18715fb688
1 changed files with 11 additions and 2 deletions

View File

@ -1,5 +1,14 @@
import PageInDevelopment from "../PageInDevelopment";
import { Card } from "antd";
export default function Dashboard() {
return <PageInDevelopment showBackButton={false} />;
return (
<Card title="Dashboard">
<iframe
src="https://youtu.be/iSwaz71_YkE"
style={{
width: "100%",
}}
/>
</Card>
);
}