aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/landing/sections/Software.tsx
blob: 8a421b57dc381f472229c2db99dabc15c84aace3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * SPDX-FileCopyrightText: 2023 Kristóf Marussy
 *
 * SPDX-License-Identifier: MIT
 */

import clsx from 'clsx';

import Section from '@site/src/components/landing/Section';

import styles from './Software.module.css';

export default function Software() {
  return <Section id="software" title="Software"></Section>;
}