Skip to content

Commit 4bfcdb4

Browse files
committed
more pages
1 parent 913bc54 commit 4bfcdb4

3 files changed

Lines changed: 36 additions & 2 deletions

File tree

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## Welcome to my GitHub Pages
2+
3+
Everything is just building up.
4+
5+
You can see the work [here](https://easy121.github.io/).

src/pages/about.astro

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
---
3+
4+
<html lang="en">
5+
<head>
6+
<meta charset="utf-8" />
7+
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
8+
<meta name="viewport" content="width=device-width" />
9+
<meta name="generator" content={Astro.generator} >
10+
<title>Astro</title>
11+
</head>
12+
<body>
13+
<h1>My Astro Site</h1>
14+
15+
<a href="/">Home</a>
16+
<a href="/about/">About</a>
17+
18+
<h1>About Me</h1>
19+
<h2>... and my new Astro site!</h2>
20+
21+
<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>
22+
23+
<p>This site will update as I complete more of the tutorial, so keep checking back and see how my journey is going!</p>
24+
</body>
25+
</html>

src/pages/index.astro

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,11 @@ import Layout from '../layouts/Layout.astro';
2222
<title>Astro</title>
2323
</head>
2424
<body>
25-
<h1>Astro</h1>
26-
<h1>My Astro Site</h1>
25+
<h1>Astro</h1>
26+
27+
<a href="/">Home</a>
28+
<a href="/about/">About</a>
29+
30+
<h1>My Astro Site</h1>
2731
</body>
2832
</html>

0 commit comments

Comments
 (0)