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.
36 lines
508 B
Plaintext
36 lines
508 B
Plaintext
---
|
|
// src/components/Layout.astro
|
|
import Header from "./Header.astro";
|
|
import Footer from "./Footer.astro";
|
|
import "../styles/components/Layout.css"
|
|
import "../styles/variables.css"
|
|
import "../styles/index.css"
|
|
---
|
|
|
|
<!doctype html>
|
|
|
|
<html lang="de">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Gallus Pub</title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<Header />
|
|
|
|
<main class="container">
|
|
|
|
<slot />
|
|
|
|
</main>
|
|
|
|
<Footer />
|
|
|
|
</body>
|
|
|
|
</html>
|