File tree Expand file tree Collapse file tree 1 file changed +15
-11
lines changed Expand file tree Collapse file tree 1 file changed +15
-11
lines changed Original file line number Diff line number Diff line change 1
1
<script setup lang="ts">
2
2
import { useNuxtifyConfig , useServerSeoMeta } from ' #imports'
3
3
4
+ // App state
5
+ const nuxtifyConfig = useNuxtifyConfig ()
6
+
4
7
// Page info
5
8
useServerSeoMeta ({
6
- title: ' @nuxtify/pages ' ,
7
- description: ' This is the @nuxtify/pages homepage. ' ,
9
+ title: ` ${ nuxtifyConfig . brand ?. name } ` ,
10
+ description: ` This is the ${ nuxtifyConfig . brand ?. name } home page. ` ,
8
11
})
9
-
10
- // App state
11
- const nuxtifyConfig = useNuxtifyConfig ()
12
12
</script >
13
13
14
14
<template >
15
15
<v-container class =" text-center" >
16
- <ClientOnly >
17
- <h1 >{{ nuxtifyConfig.brand?.name }} Home</h1 >
18
- <template #fallback >
19
- <AppLoading />
20
- </template >
21
- </ClientOnly >
16
+ <v-row >
17
+ <v-col cols =" 12" >
18
+ <ClientOnly >
19
+ <h1 >{{ nuxtifyConfig.brand?.name }} Home</h1 >
20
+ <template #fallback >
21
+ <AppLoading />
22
+ </template >
23
+ </ClientOnly >
24
+ </v-col >
25
+ </v-row >
22
26
</v-container >
23
27
</template >
You can’t perform that action at this time.
0 commit comments