Skip to content

Commit f6490bc

Browse files
Add default about, contact page components
1 parent 0820886 commit f6490bc

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<template>
2+
<layout>
3+
<h1>About</h1>
4+
<p>About my first Inertia.js app!</p>
5+
</layout>
6+
</template>
7+
8+
<script>
9+
import Layout from '@/Shared/Layout'
10+
11+
export default {
12+
components: {
13+
Layout,
14+
},
15+
}
16+
</script>
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<template>
2+
<layout>
3+
<h1>Contact</h1>
4+
<p>Contact me about my first Inertia.js app!</p>
5+
</layout>
6+
</template>
7+
8+
<script>
9+
import Layout from '@/Shared/Layout'
10+
11+
export default {
12+
components: {
13+
Layout,
14+
},
15+
}
16+
</script>

0 commit comments

Comments
 (0)