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

9
src/pages/Home.jsx Normal file
View File

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