Skip to content

Commit 304b78c

Browse files
committed
fix start page which also solves test problems
1 parent 0240e06 commit 304b78c

1 file changed

Lines changed: 12 additions & 11 deletions

File tree

src/pages/Start.vue

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,26 @@
11
<template>
22
<div class="window-height window-width row justify-center items-center">
3-
<q-card>
4-
<q-card-title><h1>Start Page</h1></q-card-title>
5-
<q-card-main>
3+
<q-card dark bordered class="bg-grey-9 my-card">
4+
<q-card-section>
5+
<div class="text-h6">Start Page</div>
6+
<div class="text-subtitle2">by John Doe</div>
7+
</q-card-section>
8+
9+
<q-separator dark inset />
10+
11+
<q-card-section>
612
<p
7-
v-for="n in 10"
13+
v-for="n in 5"
814
:key="n"
915
>
1016
Lorem ipsum dolor sit amet consectetur adipisicing elit. Fugit nihil praesentium molestias a adipisci, dolore vitae odit, quidem consequatur optio voluptates asperiores pariatur eos numquam rerum delectus commodi perferendis voluptate?
1117
</p>
12-
</q-card-main>
13-
14-
<q-card-separator />
15-
16-
<q-card-actions align="right">
1718
<q-btn
1819
color="grey-6"
19-
label="Continue"
20+
label="Get started"
2021
to="/1"
2122
/>
22-
</q-card-actions>
23+
</q-card-section>
2324
</q-card>
2425
</div>
2526
</template>

0 commit comments

Comments
 (0)