-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add footer * remove edit to env.d.ts * use astro image for optimization * remove edit to env.d.ts
- Loading branch information
Showing
3 changed files
with
26 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file was deleted.
Oops, something went wrong.
Binary file not shown.