first commit

This commit is contained in:
2026-06-21 14:17:24 +00:00
commit 4fbd7a515e
275 changed files with 45470 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import { useRef } from 'react'
import footerHtml from '../data/layout-footer.html?raw'
import { useNavFix } from '../hooks/useNavFix'
export default function Footer() {
const ref = useRef(null)
useNavFix(ref)
return <div ref={ref} dangerouslySetInnerHTML={{ __html: footerHtml }} />
}