aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/landing/sections/Software.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/landing/sections/Software.tsx')
-rw-r--r--src/components/landing/sections/Software.tsx15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/components/landing/sections/Software.tsx b/src/components/landing/sections/Software.tsx
new file mode 100644
index 0000000..8a421b5
--- /dev/null
+++ b/src/components/landing/sections/Software.tsx
@@ -0,0 +1,15 @@
1/*
2 * SPDX-FileCopyrightText: 2023 Kristóf Marussy
3 *
4 * SPDX-License-Identifier: MIT
5 */
6
7import clsx from 'clsx';
8
9import Section from '@site/src/components/landing/Section';
10
11import styles from './Software.module.css';
12
13export default function Software() {
14 return <Section id="software" title="Software"></Section>;
15}