summaryrefslogtreecommitdiff
path: root/src/app/(mobile-screen)/page.tsx
blob: 430a195f91431feb112b883c7611a7ae36a18188 (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">
        <ProfileCard />
        <Spacer y={6} />
        <StockOpname />
      </main>
    </Authenticated>
  )
}