-
-
Notifications
You must be signed in to change notification settings - Fork 67
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
Showing
59 changed files
with
1,949 additions
and
46 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
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,29 @@ | ||
"use client"; | ||
import SectionTitle from "components/con/common/typography/SectionTitle"; | ||
import Section from "components/con/home/Section"; | ||
import { useContext } from "react"; | ||
import { LanguageContext } from "contexts/con/LanguageContext"; | ||
import SectionSubTitle from "components/con/common/typography/SectionSubtitle"; | ||
|
||
export default function AfterMovie() { | ||
const { t, Translate } = useContext(LanguageContext); | ||
return ( | ||
<Section section="aftermovie"> | ||
<div className="container text-center flex flex-col items-center"> | ||
<SectionTitle dark> | ||
<Translate translationKey="2024.aftermovie.title" /> | ||
</SectionTitle> | ||
<SectionSubTitle dark>{t("2024.aftermovie.subtitle")}</SectionSubTitle> | ||
<iframe | ||
className="aspect-video w-full max-w-2xl border-white border-8 shadow-2xl" | ||
src="https://www.youtube.com/embed/XXj8NCvLuis?si=hWGWKS81UriUkJ3R&controls=0" | ||
title="YouTube video player" | ||
frameBorder="0" | ||
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" | ||
referrerPolicy="strict-origin-when-cross-origin" | ||
allowFullScreen | ||
></iframe> | ||
</div> | ||
</Section> | ||
); | ||
} |
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
35 changes: 35 additions & 0 deletions
35
pwa/app/(con)/[locale]/con/2024/review/components/Review/ReviewCover.tsx
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,35 @@ | ||
"use client"; | ||
import ReviewCoverBase from "components/con/review/ReviewCover"; | ||
import { useContext } from "react"; | ||
import { LanguageContext } from "contexts/con/LanguageContext"; | ||
|
||
export default function ReviewCover() { | ||
const { t, Translate } = useContext(LanguageContext); | ||
return ( | ||
<ReviewCoverBase | ||
edition="2024" | ||
title={t("2024.review.title")} | ||
baseline={ | ||
<> | ||
<p>{t("2024.review.subtitle_1")}</p> | ||
<Translate | ||
className="text-sm mt-4" | ||
translationKey="2024.review.subtitle_2" | ||
translationParams={{ | ||
link: ( | ||
<a | ||
className="font-bold underline" | ||
href="https://forms.gle/kNpkFsEZshYnfJST6" | ||
target="_blank" | ||
rel="noreferrer noopener" | ||
> | ||
{t("2024.review.link")} | ||
</a> | ||
), | ||
}} | ||
/> | ||
</> | ||
} | ||
/> | ||
); | ||
} |
Oops, something went wrong.