Compare commits

..

3 commits

3 changed files with 3 additions and 1 deletions

View file

@ -1,3 +1,4 @@
*
!/src
!/public
!/package*.json

View file

@ -21,5 +21,6 @@ COPY --from=build /app/dist ./dist
ENV HOST=0.0.0.0
ENV PORT=4321
ENV ASTRO_TELEMETRY_DISABLED=1
EXPOSE 4321
CMD node ./dist/server/entry.mjs

View file

@ -5,7 +5,7 @@ const { id, name, link } = Astro.props;
<a href={link}>
<div class="card">
<div class="image-wrapper">
<img src={`/img/logo/${id}.svg`} alt={`${name} logo`}" />
<img src={`/img/logo/${id}.svg`} alt={`${name} logo`} />
</div>
<div class="text">
<h1>{name}</h1>