feat: add about page

This commit is contained in:
Ruidy 2024-12-31 00:41:48 +01:00
parent 0fd85c0041
commit e8157d31ff
No known key found for this signature in database
GPG key ID: E00F51288CB857CC
2 changed files with 26 additions and 1 deletions

22
src/pages/about.astro Normal file
View file

@ -0,0 +1,22 @@
---
---
<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>Astro</title>
</head>
<body>
<a href="/">Home</a>
<a href="/about">About</a>
<h1>About me</h1>
<h2>... and my new website!</h2>
<p>I'm a web developer and I'm learning Astro.</p>
<p>This is my first website!</p>
</body>
</html>

View file

@ -11,6 +11,9 @@
<title>Astro</title> <title>Astro</title>
</head> </head>
<body> <body>
<h1>Runtime Notes</h1> <a href="/">Home</a>
<a href="/about">About</a>
<h1>Orbital Orbit</h1>
</body> </body>
</html> </html>