Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[feat] add footer #12

Merged
merged 4 commits into from
Jan 11, 2024
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
27 changes: 26 additions & 1 deletion src/components/Footer.astro
Original file line number Diff line number Diff line change
@@ -1 +1,26 @@
<footer></footer>
---
import { Image } from 'astro:assets';
import brandIcon from '../graphics/brand.webp';
import bearIcon from '../graphics/bear.svg';
---

<footer>
<Image src={bearIcon} alt="super bear" />
<Image class="brand" src={brandIcon} alt="brand logo" />
</footer>

<style lang="scss">
footer {
display: flex;
flex-direction: column;
align-items: center;
gap: 61px;
padding-top: 164px;
padding-bottom: 76px;
}

.brand {
width: 200px;
height: auto;
}
</style>
15 changes: 0 additions & 15 deletions src/graphics/brand.svg

This file was deleted.

Binary file added src/graphics/brand.webp
Binary file not shown.