feat: implement Landingpage component and update Layout to conditionally render it

This commit is contained in:
2025-09-19 12:24:17 +02:00
parent c3572a3d70
commit 679ef7dcbd
3 changed files with 36 additions and 17 deletions

View File

@@ -0,0 +1,11 @@
import React from "react";
const Landingpage: React.FC = () => {
return (
<>
<h1>Übersicht über alle Gegenstände und Ausleihen</h1>
</>
);
};
export default Landingpage;