From 3e7e8c7b646ff190818e168ab897fe86e1617d5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Famibelle-Pronzola?= Date: Sat, 22 Jul 2023 13:38:54 +0400 Subject: [PATCH] Create Akey components --- components/akey/index.js | 51 ++++++++++++++++++++++++++++++++++++ components/akey/statistik.js | 17 ++++++++++++ 2 files changed, 68 insertions(+) create mode 100644 components/akey/index.js create mode 100644 components/akey/statistik.js diff --git a/components/akey/index.js b/components/akey/index.js new file mode 100644 index 0000000..267ae74 --- /dev/null +++ b/components/akey/index.js @@ -0,0 +1,51 @@ +import PropTypes from 'prop-types' +import Container from '@mui/material/Container' +import Typography from '@mui/material/Typography' +import Box from '@mui/material/Box' +import Grid from '@mui/material/Unstable_Grid2' +import Button from '@mui/material/Button' +import Image from 'next/image' +import Link from 'next/link' + +export default function Akey({logo}) { + return ( + + + + + + OKI + + + OKI logo + + + Organisation KA Internationale + + + Paroles et traductions + + + + + + + + + + + + + ) +} + +Akey.propTypes = { + logo: PropTypes.object.isRequired +} diff --git a/components/akey/statistik.js b/components/akey/statistik.js new file mode 100644 index 0000000..fe09936 --- /dev/null +++ b/components/akey/statistik.js @@ -0,0 +1,17 @@ +import PropTypes from 'prop-types' + +import Grid from '@mui/material/Unstable_Grid2' +import KatAkey from './kat-akey' + +export default function Statistik({statistik}) { + return ( + + + + + ) +} + +Statistik.propTypes = { + statistik: PropTypes.object.isRequired +}