mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-10-11 20:43:42 +08:00
Added website ICP filing module
This commit is contained in:
25
app/components/BottomRecord.scss
Normal file
25
app/components/BottomRecord.scss
Normal file
@@ -0,0 +1,25 @@
|
||||
.bottom-record {
|
||||
display: none; /* 默认情况下不显示 */
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background-color: #f5f5f5;
|
||||
padding: 10px;
|
||||
text-align: center;
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
|
||||
@media (min-width: 768px) {
|
||||
display: block; /* 在宽度大于等于768px时显示 */
|
||||
}
|
||||
}
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: #303030;
|
||||
|
||||
&:hover {
|
||||
text-decoration: none; // 鼠标悬停时也取消下划线
|
||||
}
|
||||
}
|
||||
|
18
app/components/beian.tsx
Normal file
18
app/components/beian.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import React from "react";
|
||||
import "./BottomRecord.scss";
|
||||
|
||||
const BottomRecord = () => {
|
||||
return (
|
||||
<div className="bottom-record">
|
||||
<a
|
||||
href="http://beian.miit.gov.cn/"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
浙ICP备2022000621号-2
|
||||
</a>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default BottomRecord;
|
Reference in New Issue
Block a user