Skip to content

Commit 375c93b

Browse files
committed
added doc links
1 parent 5462570 commit 375c93b

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

src/pages/Index.vue

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,29 @@
11
<template>
22
<Layout>
3+
4+
<!-- Learn how to use images here: https://gridsome.org/docs/images -->
35
<g-image alt="Example image" src="~/favicon.png" width="135" />
6+
47
<h1>Hello, world!</h1>
8+
59
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Pariatur excepturi labore tempore expedita, et iste tenetur suscipit explicabo! Dolores, aperiam non officia eos quod asperiores</p>
10+
11+
<p class="home-links">
12+
<a href="https://gridsome.org/docs" target="_blank">Gridsome Docs</a>
13+
<a href="https://github.com/gridsome/gridsome" target="_blank">GitHub</a>
14+
</p>
15+
616
</Layout>
717
</template>
818

919
<script>
10-
export default {}
20+
export default {
21+
// ..
22+
}
1123
</script>
24+
25+
<style>
26+
.home-links a{
27+
margin-right: 1rem;
28+
}
29+
</style>

0 commit comments

Comments
 (0)