-
Notifications
You must be signed in to change notification settings - Fork 0
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 #15 from EthereumBogota/faq-section
Added FAQ section
- Loading branch information
Showing
9 changed files
with
125 additions
and
17 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
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,70 @@ | ||
import { | ||
Accordion, | ||
AccordionItem, | ||
AccordionButton, | ||
AccordionPanel, | ||
Flex, | ||
Text, | ||
Container, | ||
} from '@chakra-ui/react' | ||
import { FaChevronDown } from 'react-icons/fa' | ||
|
||
|
||
export default function AccordionC() { | ||
return ( | ||
<Flex | ||
align={'center'} | ||
justify={'center'} | ||
> | ||
<Container w={"80%"}> | ||
<Accordion allowMultiple width="100%" maxW="lg" rounded="lg" fontFamily={"space"}> | ||
<AccordionItem> | ||
<AccordionButton | ||
display="flex" | ||
alignItems="center" | ||
justifyContent="space-between" | ||
p={4}> | ||
<Text fontSize="md">What is MeetDapp?</Text> | ||
<FaChevronDown fontSize="24px" /> | ||
</AccordionButton> | ||
<AccordionPanel pb={4}> | ||
<Text color="gray.600"> | ||
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Tempore eum culpa similique vitae veritatis commodi, asperiores magni officiis quis molestiae, recusandae, unde animi ad rem nesciunt placeat praesentium temporibus aut. | ||
</Text> | ||
</AccordionPanel> | ||
</AccordionItem> | ||
<AccordionItem> | ||
<AccordionButton | ||
display="flex" | ||
alignItems="center" | ||
justifyContent="space-between" | ||
p={4}> | ||
<Text fontSize="md">What advantages to use?</Text> | ||
<FaChevronDown fontSize="24px" /> | ||
</AccordionButton> | ||
<AccordionPanel pb={4}> | ||
<Text color="gray.600"> | ||
Lorem ipsum dolor sit amet consectetur adipisicing elit. Laborum labore quis minus ipsum similique expedita quo, dolorum a iure, hic eum! Aliquid nihil error recusandae illum praesentium. Eligendi, voluptates voluptas? | ||
</Text> | ||
</AccordionPanel> | ||
</AccordionItem> | ||
<AccordionItem> | ||
<AccordionButton | ||
display="flex" | ||
alignItems="center" | ||
justifyContent="space-between" | ||
p={4}> | ||
<Text fontSize="md">How to start using MeetDapp?</Text> | ||
<FaChevronDown fontSize="24px" /> | ||
</AccordionButton> | ||
<AccordionPanel pb={4}> | ||
<Text color="gray.600"> | ||
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Neque, nam tenetur laudantium nemo expedita eum facilis hic eos consequatur vel consequuntur suscipit dolore ex quod eius iusto optio saepe a. | ||
</Text> | ||
</AccordionPanel> | ||
</AccordionItem> | ||
</Accordion> | ||
</Container> | ||
</Flex> | ||
) | ||
} |
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
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,21 @@ | ||
import { | ||
Flex, | ||
Heading, | ||
} from "@chakra-ui/react"; | ||
import { useTranslation } from "react-i18next"; | ||
import AccordionC from "./AccordionC"; | ||
|
||
export default function Events(): React.ReactNode { | ||
const { t } = useTranslation() | ||
|
||
return ( | ||
<> | ||
<Flex width={"90%"} maxW={"1200px"} flexDirection={'column'} gap={10} zIndex={50} color={'#00001C'} px={{ base: 4, lg: 0 }} my={10}> | ||
<Heading textAlign={"center"} fontFamily="spaceBold"> | ||
{t('landing.FAQ.title')} | ||
</Heading> | ||
<AccordionC /> | ||
</Flex> | ||
</> | ||
) | ||
} |
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
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