aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/docs/src/components/UseCases/index.tsx
blob: c9570cc6618b5294ae136399e8cf74066a8a08c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/*
 * SPDX-FileCopyrightText: 2024 The Refinery Authors
 *
 * SPDX-License-Identifier: EPL-2.0
 */

import Link from '@docusaurus/Link';
import clsx from 'clsx';

import styles from './index.module.css';
import Uc1 from './uc1.svg';
import Uc2 from './uc2.svg';
import Uc3 from './uc3.svg';
import Uc4 from './uc4.svg';
import Uc5 from './uc5.svg';
import Uc6 from './uc6.svg';

function UseCase({
  icon,
  title,
  href,
}: {
  icon: React.ReactNode;
  title: React.ReactNode;
  href: string;
}) {
  return (
    <div className="col col--4">
      <div className={styles['use-case']}>
        <h3 className={styles['use-case__title']}>
          <Link href={href} className={styles['use-case__link']!}>
            {title}
          </Link>
        </h3>
        <div className={styles['use-case__content']}>{icon}</div>
      </div>
    </div>
  );
}

export default function UseCases() {
  return (
    <>
      <div className="row">
        <UseCase
          icon={<Uc1 />}
          title={
            <>
              <b>Scenario generation</b> for testing autonomous vechicles
            </>
          }
          href="https://doi.org/10.1007/s10270-021-00884-z"
        />
        <UseCase
          icon={<Uc2 />}
          title={
            <>
              <b>Conformance checking</b> of modeling toolchains
            </>
          }
          href="https://doi.org/10.1007/s10009-019-00530-6"
        />
        <UseCase
          icon={<Uc3 />}
          title={
            <>
              Synthesize distributed <b>communication networks</b>
            </>
          }
          href="https://doi.org/10.1109/TSE.2020.3025732"
        />
      </div>
      <div className={clsx('row', styles['row--bottom'])}>
        <UseCase
          icon={<Uc4 />}
          title={
            <>
              <b>Execution time analysis</b> for <span>data-driven</span>{' '}
              critical systems
            </>
          }
          href="https://doi.org/10.1145/3471904"
        />
        <UseCase
          icon={<Uc5 />}
          title={
            <>
              <b>Generative architectures</b> with assured resilience
            </>
          }
          href="https://doi.org/10.1145/3550355.3552448"
        />
        <UseCase
          icon={<Uc6 />}
          title={
            <>
              <b>Video game map generator</b> with <span>model-based</span>{' '}
              techniques
            </>
          }
          href="https://doi.org/10.1145/3417990.3422001"
        />
      </div>
    </>
  );
}