Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/app/products/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default function ProductsPage() {

return (
<main className="flex min-h-screen flex-col items-center justify-center bg-gradient-to-b from-[#2e026d] to-[#15162c] text-white">
<div className="container flex flex-col items-center justify-center gap-12 px-4 py-16 ">
<div className="container flex flex-col items-center justify-center gap-12 px-4 py-16 bg-primary-100 rounded">
<h1 className="text-5xl font-extrabold tracking-tight text-white sm:text-[5rem]">
Products
</h1>
Expand Down
8 changes: 4 additions & 4 deletions src/components/ProductList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ export function ProductList({
<>
<div>
<h3>Widgets</h3>
<ul className="mb-4 border border-primary-500 p-2">
<ul className="mb-4 border border-[#F59E0B] p-2">
{widgets.map(({ id, name, description }) => (
<li key={id} className="m-2 border border-primary-300 p-1">
<li key={id} className="m-2 border border-[#F8BD59] p-1">
<h4>{name}</h4>
<p>{description}</p>
</li>
Expand All @@ -25,9 +25,9 @@ export function ProductList({
</div>
<div>
<h3>Gadgets</h3>
<ul className="mb-4 border border-primary-500 p-2">
<ul className="mb-4 border border-[#F59E0B] p-2">
{gadgets.map(({ id, name, description }) => (
<li key={id} className="m-2 border border-primary-300 p-1">
<li key={id} className="m-2 border border-[#F8BD59] p-1">
<h4>{name}</h4>
<p>{description}</p>
</li>
Expand Down