From aeec9554caa346e36ec36aedf3603a4ba82450ce Mon Sep 17 00:00:00 2001 From: Daisuke Date: Sun, 5 Jan 2025 08:08:19 +0900 Subject: [PATCH] Added two new pages - about and blog --- src/pages/about.astro | 25 +++++++++++++++++++++++++ src/pages/blog.astro | 21 +++++++++++++++++++++ src/pages/index.astro | 4 ++++ 3 files changed, 50 insertions(+) create mode 100644 src/pages/about.astro create mode 100644 src/pages/blog.astro diff --git a/src/pages/about.astro b/src/pages/about.astro new file mode 100644 index 0000000..b61bc05 --- /dev/null +++ b/src/pages/about.astro @@ -0,0 +1,25 @@ +--- + +--- + + + + + + + + Astro + + + Home + About + Blog + +

About Me

+

... and my new Astro site!

+ +

I am working through Astro's introductory tutorial. This is the second page on my website, and it's the first one I built myself!

+ +

This site will update as I complete more of the tutorial, so keep checking back and see how my journey is going!

+ + diff --git a/src/pages/blog.astro b/src/pages/blog.astro new file mode 100644 index 0000000..b152892 --- /dev/null +++ b/src/pages/blog.astro @@ -0,0 +1,21 @@ +--- + +--- + + + + + + + + Astro + + + Home + About + Blog + +

My Astro Learning Blog

+

This is where I will post about my journey learning Astro.

+ + diff --git a/src/pages/index.astro b/src/pages/index.astro index 093acde..fbdecd5 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -11,6 +11,10 @@ Astro + Home + About + Blog +

My Astro Site