summaryrefslogtreecommitdiff
path: root/src/app/(mobile-screen)/page.tsx
blob: 4dca647786e1906e2728acb4371163b47ae87402 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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>
        <ProfileCard />
        <Spacer y={5} />
        <div className="px-4">
          <StockOpname />
        </div>
      </main>
    </Authenticated>
  )
}