Compare commits

..

No commits in common. "aec551c9d41b282810314d3a547a91f61940c990" and "db34d2fd904897477807ebc505c6a0b990af707f" have entirely different histories.

3 changed files with 1 additions and 3 deletions

View file

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

View file

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

View file

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