-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
89a2fa5
commit 6b73b57
Showing
42 changed files
with
929 additions
and
1,117 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
v18.18 |
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,16 @@ | ||
import Image from 'next/image'; | ||
|
||
export default function Account() { | ||
return ( | ||
<div className="min-h-[80dvh] flex flex-col place-content-center place-items-center"> | ||
<Image | ||
src="/coming-soon.svg" | ||
alt="Coming Soon" | ||
width={960} | ||
height={540} | ||
/> | ||
|
||
<p className="mt-5">Coming Soon...</p> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import Image from 'next/image'; | ||
|
||
export default function Cart() { | ||
return ( | ||
<div className="min-h-[80dvh] flex flex-col place-content-center place-items-center"> | ||
<Image | ||
src="/coming-soon.svg" | ||
alt="Coming Soon" | ||
width={960} | ||
height={540} | ||
/> | ||
|
||
<p className="mt-5">Coming Soon...</p> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { default } from '@/modules/categories/categories.page'; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { PropsWithChildren } from 'react'; | ||
|
||
export default function Layout({ children }: PropsWithChildren) { | ||
return <>{children}</>; | ||
} |
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,16 @@ | ||
import { Skeleton } from '@/components/ui/skeleton'; | ||
|
||
export default function Loading() { | ||
return ( | ||
<> | ||
<Skeleton className="h-8 w-60 my-5" /> | ||
|
||
<div className="grid gap-4 grid-cols-2"> | ||
<Skeleton className="w-full h-56" /> | ||
<Skeleton className="w-full h-56" /> | ||
<Skeleton className="w-full h-56" /> | ||
<Skeleton className="w-full h-56" /> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import Image from 'next/image'; | ||
|
||
export default function Wishlist() { | ||
return ( | ||
<div className="min-h-[80dvh] flex flex-col place-content-center place-items-center"> | ||
<Image | ||
src="/coming-soon.svg" | ||
alt="Coming Soon" | ||
width={960} | ||
height={540} | ||
/> | ||
|
||
<p className="mt-5">Coming Soon...</p> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[test] | ||
preload = ["./test-setup.ts"] |
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
Oops, something went wrong.