Skip to content

Commit 9c15c1b

Browse files
refactor(app): cleanup project structure
- update project title - removed default components - clean up `Index.astro`
1 parent 1a8b6e5 commit 9c15c1b

File tree

3 files changed

+2
-215
lines changed

3 files changed

+2
-215
lines changed

app/src/components/Welcome.astro

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

app/src/layouts/Layout.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta name="viewport" content="width=device-width" />
66
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
77
<meta name="generator" content={Astro.generator} />
8-
<title>Astro Basics</title>
8+
<title>NitroVim</title>
99
</head>
1010
<body>
1111
<slot />

app/src/pages/index.astro

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
---
22
import Welcome from '../components/Welcome.astro';
33
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.
74
---
85

96
<Layout>
10-
<Welcome />
7+
<h1>NitroVim</h1>
118
</Layout>

0 commit comments

Comments
 (0)