feat(website): basic SEO

This commit is contained in:
Simon
2026-03-12 20:01:00 +08:00
parent 4ad2abe997
commit ca68be7a56
5 changed files with 40 additions and 1 deletions

View File

@@ -1,5 +1,7 @@
import { Suspense, lazy } from 'react'
import { useDocumentTitle } from '@/lib/useDocumentTitle'
import HeroSection from './HeroSection'
const FeaturesSection = lazy(() => import('./FeaturesSection'))
@@ -7,6 +9,8 @@ const ScenariosSection = lazy(() => import('./ScenariosSection'))
const OneMoreThingSection = lazy(() => import('./OneMoreThingSection'))
export default function HomePage() {
useDocumentTitle()
return (
<>
<HeroSection />