npm packages update

This commit is contained in:
mrfry
2023-03-09 16:31:34 +01:00
parent ed507dc39f
commit 32522097c0
51 changed files with 3247 additions and 5187 deletions
+20
View File
@@ -0,0 +1,20 @@
import React from 'react'
import styles from './thanks.module.css'
import constants from '../constants.json'
import Head from 'next/head'
export default function Thanks() {
return (
<div>
<Head>
<title>Qmining - Thanks for the donate!</title>
</Head>
<div className={styles.container}>
<div className={styles.title}>Thanks for the donate!</div>
<div>
<img src={`${constants.siteUrl}img/thanks.gif`} />
</div>
</div>
</div>
)
}