Skip to content

Commit

Permalink
feat(site): describe project at about page
Browse files Browse the repository at this point in the history
  • Loading branch information
devshred committed Apr 21, 2024
1 parent bda44bd commit 825f5e3
Showing 1 changed file with 101 additions and 2 deletions.
103 changes: 101 additions & 2 deletions src/pages/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,107 @@ const About = () => {
<>
<h1 className='text-6xl mb-4'>GPS Tools</h1>
<p className='mb-4 text-2xl font-light'>An app dealing with GPS files.</p>
<p className='text-lg'>Frontend Version: {import.meta.env.PACKAGE_VERSION}</p>
<p className='text-lg'>Backend Version: {backendVersion.app}</p>
<p className='text-lg'>
<a
href='https://github.com/devshred/gps-tools-frontend'
className='hover:underline'
target='_blank'
>
Frontend Version
</a>
:{' '}
<a
href='https://github.com/devshred/gps-tools-frontend/releases'
className='hover:underline'
target='_blank'
>
{import.meta.env.PACKAGE_VERSION}
</a>
</p>
<p className='text-lg'>
<a
href='https://github.com/devshred/gps-tools-backend'
className='hover:underline'
target='_blank'
>
Backend Version
</a>
:{' '}
<a
href='https://github.com/devshred/gps-tools-backend/releases'
className='hover:underline'
target='_blank'
>
{backendVersion.app}
</a>
</p>
<p className='text-lg mt-4'>
This app was created to test some technologies. These are:
</p>
<ul className='text-lg mt-4'>
<li>
<a
href='https://react.dev/'
className='hover:underline'
target='_blank'
>
React
</a>
,{' '}
<a
href='https://tailwindcss.com/'
className='hover:underline'
target='_blank'
>
Tailwind CSS
</a>
,{' '}
<a
href='https://daisyui.com/'
className='hover:underline'
target='_blank'
>
daisyUI
</a>
</li>
<li>
<a
href='https://kotlinlang.org/'
className='hover:underline'
target='_blank'
>
Kotlin
</a>
,{' '}
<a
href='https://spring.io/'
className='hover:underline'
target='_blank'
>
Spring
</a>
</li>
<li>
<a
href='https://leafletjs.com/'
className='hover:underline'
target='_blank'
>
Leaflet
</a>
,{' '}
<a
href='https://photon.komoot.io/'
className='hover:underline'
target='_blank'
>
photon
</a>
</li>
</ul>
<p className='text-lg mt-4'>
Contact: gps minus tools ät devshred dot org
</p>
</>
)
}
Expand Down

0 comments on commit 825f5e3

Please sign in to comment.