Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed astro/public/hero-poster-light.jpg
Binary file not shown.
Binary file added astro/public/hero-poster-light.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed astro/public/hero-poster.jpg
Binary file not shown.
Binary file added astro/public/hero-poster.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified astro/public/images/express-mw.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed astro/public/videos/hero-background-light.mp4
Binary file not shown.
Binary file added astro/public/videos/hero-background-light.webm
Binary file not shown.
Binary file removed astro/public/videos/hero-background.mp4
Binary file not shown.
Binary file added astro/public/videos/hero-background.webm
Binary file not shown.
37 changes: 24 additions & 13 deletions astro/src/components/patterns/Footer/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -40,82 +40,93 @@ import { BodyMd, Col, Container, Grid } from '@/components/primitives';
<Container>
<Grid gap="2" align="center">
<Col xs={12} md={6} lg={6}>
<ul class="footer__logo">
<ul class="footer__logo" aria-label="Partner logos">
<li>
<a href="https://openjsf.org" aria-label="OpenJS Foundation" target="_blank">
<a
href="https://openjsf.org"
aria-label="Hosted by OpenJS Foundation"
target="_blank"
>
<img
class="footer-logo-light"
src="/openjs-logo-black.svg"
alt="OpenJS Foundation Logo"
width="80"
height="auto"
height="24"
loading="lazy"
/>
<img
class="footer-logo-dark"
src="/openjs-logo-white.svg"
alt="OpenJS Foundation Logo"
width="80"
height="auto"
height="24"
loading="lazy"
/>
</a>
</li>
<li>
<a
href="https://www.netlify.com"
aria-label="Preview Deploys by Netlify"
aria-label="Preview deployed by netlify"
target="_blank"
>
<img
src="/netlify-logo.svg"
alt="Netlify Logo"
width="80"
height="auto"
height="24"
loading="lazy"
/>
</a>
</li>
</ul>
</Col>
<Col xs={12} md={6} lg={6}>
<ul class="footer__socials">
<ul class="footer__socials" aria-label="Social links">
<li>
<a
href="https://github.com/expressjs/express"
aria-label="Go to the repository on GitHub"
aria-label="expressjs on GitHub"
target="_blank"
>
<Icon name="github" />
</a>
</li>
<li>
<a
href="https://www.youtube.com/channel/UCYjxjAeH6TRik9Iwy5nXw7g"
aria-label="Go to the channel on Youtube"
aria-label="expressjs channel on Youtube"
target="_blank"
>
<Icon name="youtube" />
</a>
</li>
<li>
<a href="https://x.com/UseExpressJS" aria-label="Go to the X account">
<a href="https://x.com/UseExpressJS" aria-label="follow expressjs on X account">
<Icon name="x" />
</a>
</li>
<li>
<a href="https://slack-invite.openjsf.org" aria-label="Join Slack group">
<a
href="https://slack-invite.openjsf.org"
aria-label="Join openjs foundation slack group"
>
<Icon name="slack" />
</a>
</li>
<li>
<a href="https://opencollective.com/express" aria-label="Go to Open Collective">
<a
href="https://opencollective.com/express"
aria-label="support expressjs on Open Collective"
>
<Icon name="open-collective" />
</a>
</li>
<li>
<a
href="https://bsky.app/profile/expressjs.bsky.social"
aria-label="Go to the Bluesky"
aria-label="follow expressjs on bluesky"
>
<Icon name="bsky" />
</a>
Expand Down
Loading
Loading