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

@@ -4,9 +4,7 @@ import Layout from "./Layout/Layout";
function App() {
return (
<>
<Layout>
<p></p>
</Layout>
<Layout />
</>
);
}