Skip to content

Commit

Permalink
デザインなどを調整
Browse files Browse the repository at this point in the history
  • Loading branch information
tasuren committed Sep 29, 2024
1 parent 775531b commit 86775ff
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
1 change: 1 addition & 0 deletions src/components/Head.astro
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ const { title, description, keywords, type, properties } = Astro.props;
<meta name="author" content="Takagi Tasuku">
<meta name="color-scheme" content="light dark">
{keywords ? <meta name="keywords" content={keywords.join(",")}> : null}
<meta name="viewport" content="width=device-width,initial-scale=1">

<meta property="og:title" content={title}>
<meta property="og:description" content={description}>
Expand Down
6 changes: 3 additions & 3 deletions src/layouts/MainLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ if (!title) console.warn("タイトルがないページがあります。", Ast
</Head>

<body>
<main class="mx-auto my-10 px-4" style="width: 65ch;">
<main class="mx-auto my-10" style="max-width: 65ch;">
<slot />
</main>
</body>
</html>

<style>
li, ul {
margin-bottom: 1px !important;
margin-top: 1px !important;
margin-bottom: 1px;
margin-top: 1px;
}
</style>
11 changes: 7 additions & 4 deletions src/pages/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,17 @@ description: 髙木祐来のホームページで、彼の活動やプロフィ

import AccessCounter from "@components/AccessCounter.astro"

<img alt="tasurenのJdenticon" src="Jdenticon.svg" class="block mx-auto my-10" />
<img
alt="tasurenのJdenticon"
src="Jdenticon.svg"
class="block mx-auto my-10 h-auto sm:w-1/3 w-3/4"
/>

# 髙木祐来のホームページ
ここは髙木祐来のホームページで、彼の情報が記載されている。ソースコードは
[こちら](https://github.com/tasuren/website)
ここは髙木祐来のホームページで、彼の情報が記載されている。

ちな、2024年9月にこのウェブサイトはリニューアルした。
リニューアル前のは[ここ](https://web.archive.org/web/20240828184015/https://tasuren.jp/)から閲覧可能。
リニューアル前の昔のウェブサイトは[ここ](https://web.archive.org/web/20240828184015/https://tasuren.jp/)から閲覧可能。
過去のブログだとかもここから見れる。

## 直近の活動
Expand Down

0 comments on commit 86775ff

Please sign in to comment.