-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from MPSxDev/fix/sales
fix: Sales page
- Loading branch information
Showing
1 changed file
with
16 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |