diff --git a/docker-compose.yml b/docker-compose.yml index 8115400..b9be70b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -81,6 +81,7 @@ services: - "${FRONTEND_PORT}:80" volumes: - ./:/app + - ./public/images:/app/public/images - web_node_modules:/app/node_modules - web_astro:/app/.astro diff --git a/public/images/cessna.jpg b/public/images/cessna.jpg new file mode 100644 index 0000000..844e73f Binary files /dev/null and b/public/images/cessna.jpg differ diff --git a/public/images/test.svg b/public/images/test.svg new file mode 100644 index 0000000..587c034 --- /dev/null +++ b/public/images/test.svg @@ -0,0 +1,4 @@ + + + Image OK + diff --git a/src/env.d.ts b/src/env.d.ts index f964fe0..ee5081d 100644 --- a/src/env.d.ts +++ b/src/env.d.ts @@ -1 +1,3 @@ /// + +declare module '*.css'; diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro index c76faf6..a269b3d 100644 --- a/src/layouts/BaseLayout.astro +++ b/src/layouts/BaseLayout.astro @@ -22,20 +22,21 @@ const pageTitle = title ? `${title} · ${site.name}` : site.name;
-
-

{site.name}

-

{site.tagline}

-
-
- {site.openingHours} - {site.phone} -
+
+ Menu +
+ {site.navigation.map((item) => ( + {item.label} + ))} +
+