interstellar_ai/app/components/Documentation.tsx

79 lines
2.4 KiB
TypeScript
Raw Normal View History

2024-09-19 09:54:00 +02:00
import React from 'react';
2024-10-11 09:51:56 +02:00
// Documentation Component
const Documentation: React.FC = () => {
2024-09-19 09:54:00 +02:00
return (
2024-10-09 15:28:03 +02:00
<section id="documentation" className="documentation-section">
<div className='docDiv'>
<h1 className="title">Our Documentation</h1>
<p className="paragraph">
Here you will find our documentation file that was made using Google Docs.
</p>
<a
href="/pdf/documentation.pdf"
target="_blank"
rel="noopener noreferrer"
className="link"
aria-label="Open Documentation PDF"
>
Documentation
</a>
<h2 className="subtitle">Our Task</h2>
<p className="paragraph">
If you want to see what our task for that 4-week long project was, click on the link below.
</p>
<a
href="/pdf/AI Virtual Assistant - Internship Students 2024.pdf"
target="_blank"
rel="noopener noreferrer"
className="link"
aria-label="View Task Document"
>
Task
</a>
<h2 className="subtitle">Our Code</h2>
<p className="paragraph">
If you are interested in our source code, you can click on the links below to either download the source code directly or view it online on our Forgejo.
</p>
<a
href="https://interstellardevelopment.org/code/React-Group/interstellar_ai"
target="_blank"
rel="noopener noreferrer"
className="link"
aria-label="View Source Code Repository"
>
View Repository
</a>
<a
href="https://interstellardevelopment.org/code/React-Group/interstellar_ai/archive/main.tar.gz"
target="_blank"
rel="noopener noreferrer"
className="link"
aria-label="Download Source Code"
>
Download Source Code
</a>
<h2 className="subtitle">Our License</h2>
<p className="paragraph">
Our project is under the AGPL-3.0 or later. To find the currently used version of the license, click on the link below.
</p>
<a
href="/license.html"
target="_blank"
rel="noopener noreferrer"
className="link"
aria-label="View License"
>
License
</a>
</div>
</section>
2024-09-19 09:54:00 +02:00
);
};
2024-09-19 12:18:04 +02:00
export default Documentation;