Files
cstb-next/src/app/(main)/home/page.tsx
2025-03-25 00:40:32 +08:00

32 lines
794 B
TypeScript

"use client"
import CommonDir from "@/components/cstb/CommonDir"
import FastLaunch from "@/components/cstb/FastLaunch"
import ForceQuit from "@/components/cstb/ForceQuit"
import LaunchOption from "@/components/cstb/LaunchOption"
import Notice from "@/components/cstb/Notice"
import PowerPlan from "@/components/cstb/PowerPlan"
import SmartTransfer from "@/components/cstb/SmartTranser"
const Home = () => {
return (
<section className="flex flex-col h-full gap-4">
<div className="flex flex-grow w-full gap-4">
<Notice />
<SmartTransfer />
</div>
<CommonDir />
<LaunchOption />
<div className="flex w-full gap-4">
<PowerPlan />
<ForceQuit />
<FastLaunch />
</div>
</section>
)
}
export default Home