blob: 08b9dc9c9f9d8dc49d6ecd87f2dcd4cac0342198 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import Authenticated from "@/common/components/Authenticated";
import ProfileCard from "@/modules/profile-card";
import StockOpname from "@/modules/stock-opname";
import { Spacer } from "@nextui-org/react";
export default function HomePage() {
return (
<Authenticated>
<main className="px-4 pt-10">
<StockOpname />
<Spacer y={6} />
<ProfileCard />
</main>
</Authenticated>
)
}
|