2025-10-08 20:55:43 +09:00
|
|
|
import Image from "next/image";
|
2025-10-09 14:52:52 +09:00
|
|
|
import { QuickActions } from "@/app/components/QuickActions";
|
2025-10-08 20:55:43 +09:00
|
|
|
|
|
|
|
|
export default function Home() {
|
|
|
|
|
return (
|
2025-10-09 14:52:52 +09:00
|
|
|
<div className="">
|
|
|
|
|
<QuickActions />
|
2025-10-08 20:55:43 +09:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|