Skip to content

Commit

Permalink
Merge pull request #34 from MPSxDev/fix/sales
Browse files Browse the repository at this point in the history
fix: Sales page
  • Loading branch information
MPSxDev authored Nov 28, 2024
2 parents 55e274a + 45b3d09 commit a784a42
Showing 1 changed file with 16 additions and 7 deletions.
23 changes: 16 additions & 7 deletions paystell-frontend/src/app/dashboard/sales/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
export default function SalesPage() {
return (
<div className="flex min-h-screen flex-col p-8">
<h1 className="text-2xl font-semibold">Sales</h1>
</div>
);
}
import Header from "@/components/dashboard/sales/Header"
import Cards from "@/components/dashboard/sales/Cards"
import SalesHistory from "@/components/dashboard/sales/SalesHistory"

const SalesPage = () => {
return (
<div className="py-10 px-8">
<Header/>
<Cards/>
<SalesHistory/>

</div>
)
}

export default SalesPage

0 comments on commit a784a42

Please sign in to comment.