From 3fc0ee1b72c12922254533b78695ffa17e7232be Mon Sep 17 00:00:00 2001 From: Yasutake Yohei Date: Sat, 30 Dec 2023 22:24:55 +0900 Subject: initial commit --- src/components/HomepageFeatures/index.js | 71 ++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 src/components/HomepageFeatures/index.js (limited to 'src/components/HomepageFeatures/index.js') diff --git a/src/components/HomepageFeatures/index.js b/src/components/HomepageFeatures/index.js new file mode 100644 index 00000000..6d4f5799 --- /dev/null +++ b/src/components/HomepageFeatures/index.js @@ -0,0 +1,71 @@ +import clsx from 'clsx'; +import Heading from '@theme/Heading'; +import styles from './styles.module.css'; + +const FeatureList = [ + { + title: '一般質問', + docs: '/docs/ippan-situmon', + Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default, + description: ( + <> + 安竹のこれまでの一般質問をまとめています。 + + ), + }, + { + title: '議案等', + docs: '/docs/gian-tou', + Svg: require('@site/static/img/undraw_docusaurus_tree.svg').default, + description: ( + <> + 主な議案・請願等についてまとめています。 + + ), + }, + { + title: '発達', + docs: '/docs/hattatu', + Svg: require('@site/static/img/undraw_docusaurus_react.svg').default, + description: ( + <> + 発達に関してまとめています。 + + ), + }, +]; + +function Feature({Svg, title, docs, description}) { + return ( +
+ +
+ +
+
+ {title} +

{description}

+
+
+
+ ); +} + +export default function HomepageFeatures() { + return ( +
+
+
+ {FeatureList.map((props, idx) => ( + + ))} +
+
+
+ ); +} -- cgit v1.2.3-54-g00ecf