-
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.
- Loading branch information
1 parent
92d9f80
commit ff556be
Showing
7 changed files
with
125 additions
and
40 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,5 @@ | ||
{ | ||
"title": "FAQ & Contact", | ||
"faq": "FAQ", | ||
"description": "Vous avez des questions sur l'événement ? Consultez notre FAQ pour obtenir des réponses rapides sur le lieu, la billetterie, les conférences et bien plus. Si vous avez besoin de plus d'informations, n'hésitez pas à nous contacter !" | ||
} |
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,47 @@ | ||
'use client'; | ||
|
||
import Typography from "@/components/Typography/Typography"; | ||
import ContentMedia from "@/components/ContentMedia/ContentMedia"; | ||
import Container from "@/layouts/Container"; | ||
import { useTranslation } from "react-i18next"; | ||
import Push from "@/layouts/Push/Push"; | ||
import Faq from "@/components/Faq/Faq"; | ||
|
||
export default function Page() { | ||
const { t } = useTranslation(['faq']); | ||
|
||
return ( | ||
<Container className="flex flex-col gap-8 my-8"> | ||
<ContentMedia> | ||
<Typography | ||
variant="h1" | ||
color="dark" | ||
weight="semibold" | ||
underlineColor="primary-100" | ||
className="mb-2" | ||
> | ||
{t('faq:title')} | ||
</Typography> | ||
<Typography | ||
color="dark" | ||
className="mb-8" | ||
> | ||
{t('faq:description')} | ||
</Typography> | ||
</ContentMedia> | ||
<div className="bg-white rounded-3xl p-8"> | ||
<Typography | ||
variant="h2" | ||
color="dark" | ||
weight="semibold" | ||
underlineColor="primary-100" | ||
className="mb-6" | ||
> | ||
{t('faq:faq')} | ||
</Typography> | ||
<Faq display="grid" /> | ||
</div> | ||
<Push /> | ||
</Container> | ||
); | ||
} |
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