Translated into English

This commit is contained in:
Daisuke Nakahara 2025-04-28 19:59:23 +09:00
parent 69e344a4a5
commit e88eec95b8
4 changed files with 5 additions and 6 deletions

View file

@ -5,6 +5,6 @@
<div class="nav-links">
<a href="/">Home</a>
<a href="/about/">About</a>
<a href="/blog/">Blog</a>
<a href="/blog/">Articles</a>
<a href="/tags/">Tags</a>
</div>

View file

@ -1,11 +1,10 @@
---
import BaseLayout from "../layouts/BaseLayout.astro";
const pageTitle = "ブログ・筆者について";
const pageTitle = "About the Blog & Author";
---
<BaseLayout pageTitle={pageTitle}>
<h2>Daisuke Nakahara</h2>
<div>2024年3月に、土木系の大学院を修了。2024年4月より、エンジニアとしてのキャリアをスタートする。<br>
これまであまり重視しなかったアウトプットに力を入れ、一歩ずつ成長していく所存である。</div>
<div>I graduated from a major graduate school in Civil Engineering in March 2024 and started my career as an engineer in April 2024. <br>
</BaseLayout>

View file

@ -4,7 +4,7 @@ import BaseLayout from "../layouts/BaseLayout.astro";
import BlogPost from "../components/BlogPost.astro";
const allPosts = await getCollection("blog");
const pageTitle = "新着記事";
const pageTitle = "Latest Posts";
---
<style>

View file

@ -3,7 +3,7 @@ import { getCollection } from "astro:content";
import BaseLayout from "../../layouts/BaseLayout.astro";
const allPosts = await getCollection("blog");
const tags = [...new Set(allPosts.map((post: any) => post.data.tags).flat())];
const pageTitle = "タグ一覧";
const pageTitle = "Tag List";
---
<BaseLayout pageTitle={pageTitle}>