SanYeCao-blog/src/pages/about.astro

28 lines
744 B
Text
Raw Normal View History

2026-03-24 17:33:01 +00:00
---
import Footer from "@/components/Footer.astro";
import PostList from "@/components/Posts/PostList.astro";
2026-03-24 18:01:45 +00:00
import BaseLayout from "@/layouts/BaseLayout.astro";
2026-03-24 17:33:01 +00:00
import "@/styles/global.css";
const pageTitle = "About Me";
---
2026-03-24 18:01:45 +00:00
<BaseLayout pageTitle={pageTitle}>
2026-03-24 17:33:01 +00:00
<h1>{pageTitle}</h1>
<h2>... and my new Astro site!</h2>
<p>
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!
</p>
<p>
This site will update as I complete more of the tutorial, so keep checking
back and see how my journey is going!
</p>
<h1>My Astro Learning Blog</h1>
<p>This is where I will post about my journey learning Astro.</p>
<PostList />
2026-03-24 18:01:45 +00:00
</BaseLayout>