-
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
b114784
commit 02ad017
Showing
5 changed files
with
57 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"navigation": [ | ||
{ "label": "Programme", "href": "/#programs" }, | ||
{ "label": "Speakers", "href": "/#speakers" }, | ||
{ "label": "Sponsors", "href": "/sponsors" }, | ||
{ "label": "Préparer ma venue", "href": "/#place" }, | ||
{ "label": "FAQ & Contact", "href": "/#faq" } | ||
] | ||
} |
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,38 @@ | ||
'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 useDataProvider from "@/hooks/useDataProvider"; | ||
import Push from "@/layouts/Push/Push"; | ||
import TopBanner from "@/components/TopBanner/TopBanner"; | ||
|
||
export default function Page() { | ||
const { t } = useTranslation(['sponsors']); | ||
const dataProvider = useDataProvider(); | ||
const sponsors = dataProvider.useSponsors() | ||
|
||
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('sponsors:title')} | ||
</Typography> | ||
<Typography | ||
color="dark" | ||
className="mb-8" | ||
> | ||
{t('sponsors:subtitle')} | ||
</Typography> | ||
</ContentMedia> | ||
<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