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: 画像の最適化をした #95

Merged
merged 4 commits into from
Mar 15, 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
Binary file removed public/github-mark.png
Binary file not shown.
Binary file removed public/glaceon.avif
Binary file not shown.
Binary file removed public/glaceon.png
Binary file not shown.
Binary file removed public/qiita.png
Binary file not shown.
Binary file removed public/sora_aozora.png
Binary file not shown.
Binary file removed public/twitter_like_bird.png
Binary file not shown.
Binary file added src/images/github-mark.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 added src/images/glaceon.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 added src/images/qiita.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 added src/images/sora_aozora.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 added src/images/twitter_like_bird.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ const { title, description, ogType } = Astro.props;
<meta name="theme-color" content="#ffffff" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Reggae+One&display=swap&text=ゆっきーの砂場" rel="stylesheet">
<link rel="preload" as="style" fetchpriority="high" href="https://fonts.googleapis.com/css2?family=Reggae+One&display=swap&text=ゆっきーの砂場" >
<link href="https://fonts.googleapis.com/css2?family=Reggae+One&display=swap&text=ゆっきーの砂場" rel="stylesheet" media="print" onload='this.media="all"'>
<script>
if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
document.documentElement.classList.add('dark')
Expand Down
53 changes: 24 additions & 29 deletions src/pages/introduction.astro
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
---
export const prerender = true;
import { Image } from "astro:assets";
import Layout from "../layouts/Layout.astro";
import glaceon from "../images/glaceon.png";
import twitterLikeBird from "../images/twitter_like_bird.png";
import soraAozora from "../images/sora_aozora.png";
import githubMark from "../images/github-mark.png";
import qiita from "../images/qiita.png";
---

<Layout title="自己紹介" description="管理人の自己紹介ページです!">
<article class="flex flex-col justify-center text-center p-2">
<h1 class="text-5xl p-10">自己紹介</h1>
<span class="flex justify-center"
><picture class="align-center">
<source srcset="/glaceon.avif" type="image/avif" />
<source srcset="/glaceon.png" type="image/png" />
<img src="/glaceon.png" alt="ゆっきーのアイコン" width="150px" />
</picture>
><Image src={glaceon} alt="ゆっきーのアイコン" width="150" height="150" class="align-center" fetchpriority="high" />
</span>
<h3 class="text-4xl p-5">ゆっきー</h3>
<div>
Expand All @@ -24,45 +26,38 @@ import Layout from "../layouts/Layout.astro";
<li>
<h3>Twitter</h3>
<a href="https://twitter.com/Yu_yukk_Y">
<img
src="/twitter_like_bird.png"
alt="twitterアカウント"
width="100px"
class="m-auto py-8 hover:opacity-50"
/>
<Image src={twitterLikeBird}
alt="twitterアカウント"
width="100"
height="90"
class="m-auto py-8 hover:opacity-50" />
</a>
</li>
<li>
<h3>Bluesky</h3>
<a href="https://bsky.app/profile/yuyukky.bsky.social">
<img
src="/sora_aozora.png"
alt="Blueskyアカウント"
width="100px"
class="m-auto py-8 hover:opacity-50"
/>
<Image src={soraAozora} alt="Blueskyアカウント"
width="100"
height="84"
class="m-auto py-8 hover:opacity-50" />
</a>
</li>
<li>
<h3>Github</h3>
<a href="https://github.com/Yoshino-Yukitaro" class="text-center">
<img
src="/github-mark.png"
alt="githubアカウント"
width="100px"
class="m-auto py-8 hover:opacity-50"
/>
<Image src={githubMark} alt="githubアカウント"
width="100"
height="100"
class="m-auto py-8 hover:opacity-50" />
</a>
</li>
<li>
<h3>Qiita</h3>
<a href="https://qiita.com/Yu_yukk_Y">
<img
src="/qiita.png"
alt="qiitaアカウント"
width="100px"
class="m-auto py-8 hover:opacity-50"
/>
<Image src={qiita} alt="qiitaアカウント"
width="100"
height="100"
class="m-auto py-8 hover:opacity-50" />
</a>
</li>
</ul>
Expand Down
Loading