added tailwind design classes, and installed tailwindcss properly.

This commit is contained in:
2025-07-29 22:57:22 +02:00
parent 3530d0e37f
commit bf8c270171
7 changed files with 691 additions and 85 deletions

View File

@@ -8,10 +8,15 @@ type LayoutProps = {
const Layout: React.FC<LayoutProps> = ({ children }) => {
return (
<div>
<div className="min-h-screen bg-gradient-to-br from-blue-100 to-blue-300 flex flex-col">
<Header />
<ToastContainer />
<main>{children}</main>
<ToastContainer
position="top-right"
autoClose={3000}
hideProgressBar
theme="colored"
/>
<main className="flex-1 container mx-auto px-4 py-8">{children}</main>
</div>
);
};