import { memo } from "react"; import { GlArticle } from "gitlanding/GlArticle"; import { GlProjectCard } from "gitlanding/GlCards/GlProjectCard"; import { GlCheckList } from "gitlanding/GlCheckList"; import { GlCards } from "gitlanding/GlCards"; import { GlSectionDivider } from "gitlanding/GlSectionDivider"; import { declareComponentKeys, useTranslation } from "i18n"; import articlePng from "assets/img/article-page-example.png" import pokemonPng from "assets/img/pokemon.png"; import dataPng from "assets/img/data-visualisation.png"; import kubernetesPng from "assets/img/kubernetes.png"; import webinairePng from "assets/img/webinaire.png"; export const PageExample = memo(() => { const { t } = useTranslation({ PageExample }) return <> }); export const { i18n } = declareComponentKeys< | "articleTitle" | "articleBody" | "articleButtonLabel" | "projectCardTitle1" | "projectCardTitle2" | "projectCardTitle3" | "projectCardTitle4" | "projectCardSubtitle1" | "projectCardSubtitle2" | "projectCardSubtitle3" | "projectCardSubtitle4" | "checkListHeading" | "checkListElementTitle1" | "checkListElementTitle2" | "checkListElementTitle3" | "checkListElementTitle4" | "checkListElementTitle5" | "checkListElementTitle6" | "checkListElementDescription1" | "checkListElementDescription2" | "checkListElementDescription3" | "checkListElementDescription4" | "checkListElementDescription5" | "checkListElementDescription6" >()({ PageExample })