-
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.
Get rid of products page, moved logic into home page
- Loading branch information
Paweł Sieniewicz
committed
Sep 26, 2023
1 parent
cdc467d
commit c53350c
Showing
3 changed files
with
7 additions
and
13 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
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,10 @@ | ||
import { ProductList } from "@/ui/organisms/ProductList"; | ||
import { products } from "@/mocks/Products"; | ||
|
||
export default function Home() { | ||
return ( | ||
<main className="flex min-h-screen items-center justify-center text-black dark:text-white "> | ||
<h1 className="text-4xl font-bold">Hello world!</h1> | ||
</main> | ||
<section className="mx-auto max-w-md p-12 sm:max-w-2xl md:max-w-5xl lg:max-w-6xl"> | ||
<ProductList products={products} /> | ||
</section> | ||
); | ||
} |
This file was deleted.
Oops, something went wrong.