chore: adjust website structure

This commit is contained in:
Simon
2026-03-05 16:21:58 +08:00
parent 6b2ab73d65
commit ff31b0c03e
3 changed files with 7 additions and 7 deletions

View File

@@ -1,10 +1,10 @@
import { Suspense, lazy } from 'react'
import HeroSection from './home/HeroSection'
import HeroSection from './HeroSection'
const FeaturesSection = lazy(() => import('./home/FeaturesSection'))
const ScenariosSection = lazy(() => import('./home/ScenariosSection'))
const OneMoreThingSection = lazy(() => import('./home/OneMoreThingSection'))
const FeaturesSection = lazy(() => import('./FeaturesSection'))
const ScenariosSection = lazy(() => import('./ScenariosSection'))
const OneMoreThingSection = lazy(() => import('./OneMoreThingSection'))
export default function HomePage() {
return (