fix: CSS asset loading and convert footer to Tailwind

- Fix asset loading issues by removing commented footer.css import
- Convert footer component from custom CSS to Tailwind classes
- Add dark background styling to footer wrapper
- Maintain responsive grid layout and hover effects
- Remove unused CSS styles and simplify asset pipeline

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
kbe
2025-09-04 00:57:44 +02:00
parent 839120f2f4
commit ee4399aa46
3 changed files with 33 additions and 78 deletions

View File

@@ -9,44 +9,7 @@
/* Import components */
@import "components/hero";
@import "components/flash";
@import "components/footer";
@import "components/event-finder";
/* Import pages */
@import "pages/home";
/* Base styles */
body {
font-family: var(--font-sans);
line-height: 1.6;
color: var(--color-neutral-900);
background: var(--color-neutral-50);
}
/* App wrapper */
.app-wrapper {
min-height: 100vh;
display: flex;
flex-direction: column;
}
/* Main content */
main {
flex: 1;
}
/* Footer */
.footer {
background: var(--color-neutral-800);
color: var(--color-neutral-300);
}
/* Flash messages */
.flash {
width: 100%;
}
/* Yield content */
.yield {
width: 100%;
}