-
Notifications
You must be signed in to change notification settings - Fork 420
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #664 from EmpowerPlastic/651-marketplace-faq-page-…
…pc-m-2 651 marketplace faq page pc m 2
- Loading branch information
Showing
7 changed files
with
361 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<script setup lang="ts"> | ||
export interface FAQCollapseProps { | ||
title:string, | ||
content:string, | ||
} | ||
defineProps<FAQCollapseProps>(); | ||
</script> | ||
<template> | ||
<div tabindex="0" class="collapse group collapse-arrow mb-1"> | ||
<div class="flex collapse-title text-white bg-mediumGray"> | ||
<div class="w-7 h-7 border-2 border-white rounded-full mr-3 group-focus:bg-greenPrimary"/> | ||
{{title}} | ||
</div> | ||
<div class="collapse-content bg-lightBlack"> | ||
<p class="text-textWhite px-10 py-3">{{content}}</p> | ||
</div> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<script setup lang="ts"> | ||
import FAQCollapse from "@/components/FAQCollapse.vue"; | ||
</script> | ||
|
||
<template> | ||
<div class="p-5 md:px-[10%] min-h-[50vh] font-Inter"> | ||
<h3 class="text-white text-title24 md:mt-10">Frequently asked questions</h3> | ||
|
||
<div class="my-5 text-title18"> | ||
<FAQCollapse title="Frequently asked question" | ||
content="Decentralizing the new (circular) economy so everyone can get a fair share of the upside of making the world a cleaner and better place. Decentralizing the new (circular) economy"/> | ||
|
||
<FAQCollapse title="Frequently asked question" | ||
content="Decentralizing the new (circular) economy so everyone can get a fair share of the upside of making the world a cleaner and better place. Decentralizing the new (circular) economy"/> | ||
|
||
<FAQCollapse title="Frequently asked question" | ||
content="Decentralizing the new (circular) economy so everyone can get a fair share of the upside of making the world a cleaner and better place. Decentralizing the new (circular) economy"/> | ||
|
||
<FAQCollapse title="Frequently asked question" | ||
content="Decentralizing the new (circular) economy so everyone can get a fair share of the upside of making the world a cleaner and better place. Decentralizing the new (circular) economy"/> | ||
|
||
</div> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.