Skip to content

Commit 1c8f661

Browse files
committed
add blog and about dummy pages
1 parent f25c30e commit 1c8f661

3 files changed

Lines changed: 39 additions & 0 deletions

File tree

src/pages/about.astro

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>About Me</title>
7+
</head>
8+
<body>
9+
<a href="/">Home</a>
10+
<a href="/about">About Me</a>
11+
<a href="/blog">Blog</a>
12+
<h1>About Me</h1>
13+
<h2>And my new astro site</h2>
14+
<p>
15+
Lorem ipsum dolor sit amet consectetur adipisicing elit. Ducimus, debitis?
16+
</p>
17+
<p>
18+
Lorem ipsum dolor sit amet consectetur adipisicing elit. Repellat, deserunt!
19+
</p>
20+
</body>
21+
</html>

src/pages/blog.astro

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Blog</title>
7+
</head>
8+
<body>
9+
<a href="/">Home</a>
10+
<a href="/about">About Me</a>
11+
<a href="/blog">Blog</a>
12+
<h1>Blog</h1>
13+
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Aperiam, provident soluta nostrum fugiat veniam accusamus minus aliquid commodi in expedita! Quod provident, molestiae nulla veniam nostrum, nihil, optio beatae ab at labore minus? Distinctio debitis qui ex fuga! Distinctio nobis adipisci expedita a qui rem sunt soluta numquam itaque consectetur.</p>
14+
</body>
15+
</html>

src/pages/index.astro

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
<title>Blog</title>
1111
</head>
1212
<body>
13+
<a href="/">Home</a>
14+
<a href="/about">About Me</a>
15+
<a href="/blog">Blog</a>
1316
<h1>Hello World</h1>
1417
</body>
1518
</html>

0 commit comments

Comments
 (0)