Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
- **CSS restructuring**: Moved `styles` folder into `src` for better organization. - **Updated imports**: Adjusted component CSS imports to reflect new paths. - **Component tweaks**: - Increased HoverCard width from `350px` to `400px` for better visual balance. - Adjusted Footer layout: reorganized copyright and added email link. - Modified Drinks circle dimensions (from `6em` to `9em`) for improved design. - **Footer styles**: Changed copyright section's layout with top spacing and border adjustments.
28 lines
367 B
Plaintext
28 lines
367 B
Plaintext
---
|
|
// src/components/Hero.astro
|
|
import "../styles/components/Hero.css"
|
|
|
|
const { id } = Astro.props;
|
|
---
|
|
|
|
<section id={id} class="hero container">
|
|
|
|
<div class="hero-overlay">
|
|
|
|
<div class="hero-content">
|
|
|
|
<h1>Dein Irish Pub</h1>
|
|
|
|
<p>Im Herzen von St.Gallen</p>
|
|
|
|
<a href="#" class="button">Aktuelles ↓</a>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<style>
|
|
|
|
</style>
|