-
Notifications
You must be signed in to change notification settings - Fork 514
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
62 additions
and
1 deletion.
There are no files selected for viewing
19 changes: 18 additions & 1 deletion
19
apps/dashboard/src/app/[locale]/@dashboard/(root)/invoices/page.tsx
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,3 +1,20 @@ | ||
import { Icons } from "@midday/ui/icons"; | ||
|
||
export default function Invoice() { | ||
return null; | ||
return ( | ||
<div className="h-[calc(100vh-300px)] flex items-center justify-center"> | ||
<div className="flex flex-col items-center"> | ||
<Icons.WorkInProgress className="mb-4 w-[35px] h-[35px]" /> | ||
<div className="text-center mb-6 space-y-2"> | ||
<h2 className="font-medium text-lg">Work in progress</h2> | ||
<p className="text-[#606060] text-sm"> | ||
Nunc sit amet lectus quis mi vehicula lacinia nec | ||
<br /> non purus. Aliquam id rutrum magna. Duis | ||
<br /> convallis orci odio, sit amet vehicula tortor | ||
<br /> tincidunt quis. | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} |
20 changes: 20 additions & 0 deletions
20
apps/dashboard/src/app/[locale]/@dashboard/(root)/timer/page.tsx
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { Icons } from "@midday/ui/icons"; | ||
|
||
export default function Timer() { | ||
return ( | ||
<div className="h-[calc(100vh-300px)] flex items-center justify-center"> | ||
<div className="flex flex-col items-center"> | ||
<Icons.WorkInProgress className="mb-4 w-[35px] h-[35px]" /> | ||
<div className="text-center mb-6 space-y-2"> | ||
<h2 className="font-medium text-lg">Work in progress</h2> | ||
<p className="text-[#606060] text-sm"> | ||
Nunc sit amet lectus quis mi vehicula lacinia nec | ||
<br /> non purus. Aliquam id rutrum magna. Duis | ||
<br /> convallis orci odio, sit amet vehicula tortor | ||
<br /> tincidunt quis. | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} |
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
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
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