Clan-app: adapt overall appearance & layout

This commit is contained in:
Johannes Kirschbauer
2024-08-13 21:08:02 +02:00
parent 3136a18d23
commit f26094c1ae
6 changed files with 48 additions and 15 deletions

View File

@@ -33,12 +33,14 @@ const App: Component = () => {
setRoute("welcome");
}
});
return [
<Toaster position="top-right" />,
<Layout>
<Router route={route} />
</Layout>,
];
return (
<div class="h-screen bg-gradient-to-b from-white to-base-100 p-4">
<Toaster position="top-right" />
<Layout>
<Router route={route} />
</Layout>
</div>
);
};
export default App;