mirror of
https://github.com/ChenQihan666/Lolia-Nodes-Status-Pages.git
synced 2026-08-13 23:47:08 +08:00
15 lines
451 B
TypeScript
15 lines
451 B
TypeScript
import { Divider } from '@mantine/core'
|
|
import { pageConfig } from '@/uptime.config'
|
|
|
|
export default function Footer() {
|
|
const defaultFooter =
|
|
'<p style="text-align: center; font-size: 12px; margin-top: 10px;"> 洛链映射节点监测平台,如有任何问题,请加QQ群:975159586 </p>'
|
|
|
|
return (
|
|
<>
|
|
<Divider mt="lg" />
|
|
<div dangerouslySetInnerHTML={{ __html: pageConfig.customFooter ?? defaultFooter }} />
|
|
</>
|
|
)
|
|
}
|