This commit is contained in:
2026-07-08 07:52:34 +00:00
parent d6a8fb6353
commit 4f3b805b8c
30 changed files with 176 additions and 206 deletions

View File

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