Compare commits
8 Commits
dependabot
...
master
Author | SHA1 | Date |
---|---|---|
CPunisher | 1897fc4473 | |
CPunisher | 3436431cfd | |
CPunisher | 3e8ffb6963 | |
CPunisher | d9581ddebf | |
倪豪 | 0b6cc8db7b | |
CPunisher | 0341268305 | |
CPunisher | f544d74c55 | |
CPunisher | 3906c357f4 |
|
@ -2,15 +2,15 @@
|
||||||
<html lang="zh">
|
<html lang="zh">
|
||||||
<head>
|
<head>
|
||||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-165845289-1"></script>
|
<!-- Google tag (gtag.js) -->
|
||||||
<script data-ad-client="ca-pub-3611009408282658" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XKEWNQ1T0E"></script>
|
||||||
<script>
|
<script>
|
||||||
window.dataLayer = window.dataLayer || [];
|
window.dataLayer = window.dataLayer || [];
|
||||||
function gtag(){dataLayer.push(arguments);}
|
function gtag(){dataLayer.push(arguments);}
|
||||||
gtag('js', new Date());
|
gtag('js', new Date());
|
||||||
|
|
||||||
gtag('config', 'UA-165845289-1');
|
gtag('config', 'UA-165845289-1');
|
||||||
gtag('config', 'G-3NKS6ZG27V');
|
gtag('config', 'G-XKEWNQ1T0E');
|
||||||
</script>
|
</script>
|
||||||
<script>
|
<script>
|
||||||
(function(){
|
(function(){
|
||||||
|
@ -53,7 +53,7 @@
|
||||||
work correctly both with client-side routing and a non-root public URL.
|
work correctly both with client-side routing and a non-root public URL.
|
||||||
Learn how to configure a non-root public URL by running `npm run build`.
|
Learn how to configure a non-root public URL by running `npm run build`.
|
||||||
-->
|
-->
|
||||||
<title>QRBTF 参数化二维码生成器</title>
|
<title>QRBTF Classic</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<noscript>You need to enable JavaScript to run this app.</noscript>
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
||||||
|
|
|
@ -349,8 +349,17 @@ td {
|
||||||
transition-duration: 0.3s;
|
transition-duration: 0.3s;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.Qr-new-discord {
|
||||||
|
font-size: 12px;
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
bottom: -54px;
|
||||||
|
font-weight: bold;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
@media (min-width: 500px) {
|
@media (min-width: 500px) {
|
||||||
.Qr-input-hint {
|
.Qr-input-hint, .Qr-new-discord {
|
||||||
margin-top: 14px;
|
margin-top: 14px;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,7 +24,7 @@ ReactGA.addTrackers(
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
trackingId: 'G-3NKS6ZG27V',
|
trackingId: 'G-XKEWNQ1T0E',
|
||||||
gaOptions: { name: 'trackerG' }
|
gaOptions: { name: 'trackerG' }
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
@ -90,7 +90,7 @@ const PartFooter = () => (
|
||||||
|
|
||||||
<div className="Gray">
|
<div className="Gray">
|
||||||
Copyright © {currentYear} QRBTF. 保留所有权利。<br/>
|
Copyright © {currentYear} QRBTF. 保留所有权利。<br/>
|
||||||
<LinkTrace href="http://www.beian.miit.gov.cn/"
|
<LinkTrace href="https://beian.miit.gov.cn/"
|
||||||
rel="noopener noreferrer" target="_blank">
|
rel="noopener noreferrer" target="_blank">
|
||||||
浙
|
浙
|
||||||
ICP 备 19005869 号
|
ICP 备 19005869 号
|
||||||
|
|
|
@ -69,6 +69,9 @@ const InputText = ({dispatch}) => {
|
||||||
<div className="Qr-input-hint">
|
<div className="Qr-input-hint">
|
||||||
上传普通二维码或输入网址
|
上传普通二维码或输入网址
|
||||||
</div>
|
</div>
|
||||||
|
<a className="Qr-new-discord" href="https://discord.gg/V9CNuqYfte" target='_blank'>
|
||||||
|
New! Click to join our Discord,AI QR code coming soon!
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</React.Fragment>);
|
</React.Fragment>);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue