add git token; change cookie and header view for mobile;

This commit is contained in:
Tizian Haider
2025-07-06 21:01:23 +02:00
parent 8dc9dfd100
commit eb0c1ad2bf
8 changed files with 149 additions and 9 deletions

View File

@@ -22,9 +22,9 @@ export default function CookieBanner() {
}
return (
<div className="fixed bottom-0 left-0 w-full bg-gray-800 text-white p-4 flex flex-col md:flex-row justify-center items-center z-50 space-y-2 md:space-y-0 md:space-x-4">
<p>Wir verwenden Cookies, um Ihre Erfahrung zu verbessern.</p>
<button onClick={handleAccept} className="bg-flyer-yellow text-black px-4 py-2 rounded">Akzeptieren</button>
<div className="fixed bottom-0 left-0 w-full bg-gray-800 text-white p-4 flex flex-col items-center z-50">
<p className="text-center">Wir verwenden Cookies, um Ihre Erfahrung zu verbessern.</p>
<button onClick={handleAccept} className="bg-white text-black px-4 py-2 rounded-full mt-2">Akzeptieren</button>
</div>
);
}