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
5 changes: 5 additions & 0 deletions .hintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"extends": [
"development"
]
}
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,6 @@
"resolutions": {
"@types/react": "18.0.31",
"@types/react-dom": "18.0.11"
}
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}
55 changes: 55 additions & 0 deletions src/app/ ProductsListPage.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
import React, { FC } from "react";
import Image from "next/image";
import { GetServerSideProps } from "next";

type Product = {
id: number;
title: string;
price: number;
image: string;
};

type ProductsProps = {
products: Product[];
};

export const getServerSideProps: GetServerSideProps<ProductsProps> = async () => {
try {
const res = await fetch("https://fakestoreapi.com/products");
if (!res.ok) throw new Error("Failed to fetch products");
const products: Product[] = await res.json();
return { props: { products } };
} catch (error) {
console.error("Fetch error:", error);
return { props: { products: [] } };
}
};

const Products: FC<ProductsProps> = ({ products }) => {
if (!products || products.length === 0) {
return <div className="p-6"><p className="text-lg">No products available.</p></div>;
}

return (
<div className="p-6">
<h1 className="text-2xl font-bold mb-4">Product List</h1>
<div className="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-6">
{products.map((product) => (
<div key={product.id} className="border rounded-lg p-4 shadow-lg">
<Image
src={product.image}
alt={product.title}
width={150}
height={150}
className="object-contain mx-auto"
/>
<h2 className="text-lg font-semibold mt-2">{product.title}</h2>
<p className="text-gray-700">${product.price}</p>
</div>
))}
</div>
</div>
);
};

export default Products;