Skip to content

Commit 76128a3

Browse files
committed
Remove astro template
1 parent d7ef673 commit 76128a3

File tree

6 files changed

+22
-241
lines changed

6 files changed

+22
-241
lines changed

src/assets/astro.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/assets/background.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/components/Welcome.astro

Lines changed: 0 additions & 209 deletions
This file was deleted.

src/layouts/Base.astro

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width" />
6+
<title>Hedrion</title>
7+
</head>
8+
<body>
9+
<slot />
10+
</body>
11+
</html>
12+
13+
<style>
14+
html,
15+
body {
16+
margin: 0;
17+
width: 100%;
18+
height: 100%;
19+
}
20+
</style>

src/layouts/Layout.astro

Lines changed: 0 additions & 22 deletions
This file was deleted.

src/pages/index.astro

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
---
2-
import Welcome from '../components/Welcome.astro';
3-
import Layout from '../layouts/Layout.astro';
4-
5-
// Welcome to Astro! Wondering what to do next? Check out the Astro documentation at https://docs.astro.build
6-
// Don't want to use any of this? Delete everything in this file, the `assets`, `components`, and `layouts` directories, and start fresh.
2+
import Base from "../layouts/Base.astro";
73
---
84

9-
<Layout>
10-
<Welcome />
11-
</Layout>
5+
<Base> Soon </Base>

0 commit comments

Comments
 (0)