Skip to content

Commit 11245a9

Browse files
committed
enh(reviews): Add best reviews
1 parent 654704f commit 11245a9

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

pages/index.vue

+22-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
</v-row>
2121
<v-row class="mt-12 d-block d-sm-flex" style="background: rebeccapurple; margin-left: -200px; margin-right: -200px; border-radius: 30px; padding: 30px 150px; color: white;">
2222
<v-col class="col-12 col-sm-6 flex-column d-flex justify-center">
23-
<v-img src="undraw_product_photography.svg" :height="250" :width="300" />
23+
<v-img src="undraw_product_photography.svg" :height="250" :width="300" :contain="true" />
2424
</v-col>
2525
<v-col class="col-12 col-sm-6 flex-column d-flex justify-center">
2626
<div class="mt-10 d-flex justify-center">
@@ -101,6 +101,17 @@
101101
</v-card>
102102
</v-col>
103103
</v-row>
104+
<v-row class="mt-12 d-block d-sm-flex">
105+
<v-col class="col-12 col-sm-6 d-flex justify-center">
106+
<v-img src="undraw_public_discussion.svg" :contain="true"/>
107+
</v-col>
108+
<v-col class="col-12 col-sm-6 d-flex flex-column justify-center">
109+
<h2 class="mb-10 headline">What users are saying</h2>
110+
<v-card v-for="(post,i) in feedback" :key="i" class="mb-6">
111+
<v-card-text v-html="post" style="font-size: 1.15em !important; font-style: italic" />
112+
</v-card>
113+
</v-col>
114+
</v-row>
104115
<v-row class="mt-12 d-block d-sm-flex">
105116
<v-col class="col-12 col-sm-6 flex-column d-flex justify-center">
106117
<h2 class="headline">Support floccus</h2>
@@ -155,6 +166,16 @@ export default {
155166
data() {
156167
return {
157168
posts: [],
169+
feedback: [
170+
'The Floccus ecosystem, coupled with nextCloud Bookmarks App, has SIGNIFICANTLY improved my workflows for bookmark management across multiple computers.',
171+
'It didn\'t take much work to set up, and it was TOTALLY worth it!',
172+
'Fantastic free extension (and app available) that works like a charm! Support this project and it\'s very underrated.',
173+
'Spiritual successor to Xmarks, although this is superior. End-to-end encryption!',
174+
'This extension is really amazing! Marcel, I want to write big thank you for what are you doing, keep going!',
175+
'works 100% of the time, super easy to configure. respects privacy : you decide where your data are stored. Good job. Thanks for the Dev.',
176+
'I\'ve been using it to sync between Firefox and Chrome since 2020, and while it had some problems syncing early on, it\'s been solid for so long I can\'t even *remember* the last time I encountered a sync error.',
177+
'super tool - it does what it should',
178+
],
158179
}
159180
},
160181
head: {

0 commit comments

Comments
 (0)