Skip to content

Commit 60bee54

Browse files
committed
feat: prep FAQ.vue
1 parent 6b61a30 commit 60bee54

File tree

3 files changed

+54
-10
lines changed

3 files changed

+54
-10
lines changed
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<template>
2+
<div
3+
:class="props.class"
4+
class="grid grid-cols-2 overflow-hidden rounded-3xl border border-neutral-700 bg-neutral-950"
5+
>
6+
<div class="border-e border-neutral-700">
7+
<div
8+
class="flex flex-row justify-between border-b border-neutral-700 p-4"
9+
>
10+
<h2>What's Blueprint?</h2>
11+
<Icon name="memory:chevron-down" :size="24" />
12+
</div>
13+
<div
14+
class="flex flex-row justify-between border-b border-neutral-700 p-4"
15+
>
16+
<h2>Where can I discover and download extensions?</h2>
17+
<Icon name="memory:chevron-down" :size="24" />
18+
</div>
19+
<div
20+
class="flex flex-row justify-between border-b border-neutral-700 p-4"
21+
>
22+
<h2>Does Blueprint work with Pterodactyl forks?</h2>
23+
<Icon name="memory:chevron-down" :size="24" />
24+
</div>
25+
<div class="flex flex-row justify-between p-4">
26+
<h2>Are Blueprint's financials publicly available?</h2>
27+
<Icon name="memory:chevron-down" :size="24" />
28+
</div>
29+
</div>
30+
<div>test2</div>
31+
</div>
32+
</template>
33+
34+
<script setup lang="ts">
35+
const props = defineProps({
36+
class: {
37+
type: String,
38+
required: false,
39+
},
40+
})
41+
</script>

apps/frontend/src/pages/index.vue

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
<template>
2-
<span class="md:display h1 mt-4 block xl:text-justify">
3-
<span class="text-gray-500">The</span>
4-
industry-leading modding platform
5-
<span class="text-gray-500"> for the Pterodactyl® panel </span>
6-
</span>
2+
<div class="space-y-12">
3+
<span class="md:display h1 mt-4 block xl:text-justify">
4+
<span class="text-gray-500">The</span>
5+
industry-leading modding platform
6+
<span class="text-gray-500"> for the Pterodactyl® panel </span>
7+
</span>
78

8-
<UiMarketingSectionsHighlights class="my-12" />
9-
<UiMarketingSectionsMarquee class="my-12" />
10-
<UiMarketingSectionsHero class="my-12" />
11-
<UiMarketingSectionsRepositories class="my-12" />
9+
<UiMarketingSectionsHighlights />
10+
<UiMarketingSectionsMarquee />
11+
<UiMarketingSectionsHero />
12+
<UiMarketingSectionsRepositories />
13+
<UiMarketingSectionsFaq />
14+
</div>
1215

13-
<UiMarketingGridbackground />
16+
<UiGridbackground />
1417
</template>

0 commit comments

Comments
 (0)