Add download button & make install text look how it should

This commit is contained in:
2025-07-17 19:31:23 -07:00
parent c0a2ea36fa
commit bded72694c
5 changed files with 12 additions and 13 deletions

View File

@@ -1,9 +1,12 @@
import './Installs.scss'
export default function Installs () {
function downloadVersion() {
}
return (
<>
<p>Installs</p>
<p className='text-3xl ml-4 mt-4'>Installs</p>
<button className='button text-3xl mt-4 absolute right-4 top-4' onClick={downloadVersion}>Download new version</button>
</>
)
}