Add initial pages: index, about, and blog

This commit is contained in:
Thuan Bui
2025-12-21 12:01:34 +07:00
parent 38077da8aa
commit 50f5f119dc
3 changed files with 53 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
---
---
<html lang='en'>
<head>
<meta charset='utf-8' />
<link rel='icon' type='image/svg+xml' href='/favicon.svg' />
<meta name='viewport' content='width=device-width' />
<meta name='generator' content={Astro.generator} />
<title>About</title>
</head>
<body>
<a href='/'>Home</a>
<a href='/about/'>About</a>
<a href='/blog/'>Blog</a>
<h1>About Me</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>
</body>
</html>