Files
cstb-next/src/app/(main)/home/page.tsx

31 lines
791 B
TypeScript
Raw Normal View History

2024-11-11 10:04:00 +08:00
"use client"
2024-09-20 23:15:42 +08:00
2024-11-11 10:04:00 +08:00
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"
2024-09-20 23:15:42 +08:00
const Home = () => {
return (
2024-09-21 00:25:31 +08:00
<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>
2024-09-20 23:15:42 +08:00
</section>
2024-11-11 10:04:00 +08:00
)
}
2024-09-20 23:15:42 +08:00
2024-11-11 10:04:00 +08:00
export default Home