Files
Campus-Plug/frontend/src/pages/Home.jsx

166 lines
5.6 KiB
React
Raw Normal View History

2025-03-14 16:14:10 -06:00
import { useState } from "react";
import { Link, useNavigate } from "react-router-dom";
import { Tag, Book, Laptop, Sofa, Utensils, Gift, Heart } from "lucide-react";
2025-03-05 22:30:52 -07:00
const Home = () => {
const navigate = useNavigate();
// Same categories
const categories = [
2025-03-14 16:14:10 -06:00
{ id: 1, name: "Textbooks", icon: <Book className="h-5 w-5" /> },
{ id: 2, name: "Electronics", icon: <Laptop className="h-5 w-5" /> },
{ id: 3, name: "Furniture", icon: <Sofa className="h-5 w-5" /> },
{ id: 4, name: "Kitchen", icon: <Utensils className="h-5 w-5" /> },
{ id: 5, name: "Other", icon: <Gift className="h-5 w-5" /> },
2025-03-05 22:30:52 -07:00
];
2025-03-14 16:14:10 -06:00
2025-03-05 22:30:52 -07:00
// Same listings data
const [listings, setListings] = useState([
{
id: 0,
2025-03-14 16:14:10 -06:00
title: "Dell XPS 16 Laptop",
2025-03-05 22:30:52 -07:00
price: 850,
2025-03-14 16:14:10 -06:00
category: "Electronics",
image: "image1.avif",
condition: "Good",
seller: "Michael T.",
datePosted: "5d ago",
2025-03-05 22:30:52 -07:00
isFavorite: true,
},
]);
2025-03-14 16:14:10 -06:00
2025-03-05 22:30:52 -07:00
// Toggle favorite status
const toggleFavorite = (id, e) => {
e.preventDefault(); // Prevent navigation when clicking the heart icon
setListings(
listings.map((listing) =>
2025-03-14 16:14:10 -06:00
listing.id === id
? { ...listing, isFavorite: !listing.isFavorite }
: listing,
),
2025-03-05 22:30:52 -07:00
);
};
const handleSelling = () => {
2025-03-14 16:14:10 -06:00
navigate("/selling");
};
2025-03-05 22:30:52 -07:00
return (
<div>
2025-03-14 16:14:10 -06:00
{/* Hero Section with School Background */}
<div className="relative py-12 px-4 mb-8 shadow-sm">
{/* Background Image - Positioned at bottom */}
<div className="absolute inset-0 z-0 overflow-hidden bg-black bg-opacity-100">
<img
src="../public/Ucalgary.png"
alt="University of Calgary"
className="w-full h-full object-cover object-bottom opacity-50"
/>
{/* Dark overlay for better text readability */}
</div>
{/* Content */}
<div className="max-w-2xl mx-auto text-center relative z-1">
<h1 className="text-3xl font-bold text-white mb-4">
2025-03-05 22:30:52 -07:00
Buy and Sell on Campus
</h1>
2025-03-14 16:14:10 -06:00
<p className="text-white mb-6">
The marketplace exclusively for university students. Find everything
you need or sell what you don't.
2025-03-05 22:30:52 -07:00
</p>
2025-03-14 16:14:10 -06:00
<button
onClick={handleSelling}
className="bg-green-500 hover:bg-green-600 text-white font-medium py-2 px-6 focus:outline-none focus:ring-2 focus:ring-green-400 transition-colors"
>
2025-03-05 22:30:52 -07:00
Post an Item
</button>
</div>
</div>
2025-03-14 16:14:10 -06:00
2025-03-05 22:30:52 -07:00
{/* Categories */}
2025-03-14 16:14:10 -06:00
{/* <div className="mb-8">
2025-03-05 22:30:52 -07:00
<h2 className="text-xl font-semibold text-gray-800 mb-4">Categories</h2>
<div className="grid grid-cols-2 md:grid-cols-5 gap-4">
{categories.map((category) => (
<button
key={category.id}
className="flex flex-col items-center justify-center p-4 bg-white border border-gray-200 hover:border-green-500 hover:shadow-sm"
>
<div className="flex items-center justify-center w-12 h-12 bg-green-50 text-green-600 rounded-full mb-2">
{category.icon}
</div>
2025-03-14 16:14:10 -06:00
<span className="text-sm font-medium text-gray-700">
{category.name}
</span>
2025-03-05 22:30:52 -07:00
</button>
))}
</div>
2025-03-14 16:14:10 -06:00
</div> */}
2025-03-05 22:30:52 -07:00
{/* Recent Listings */}
<div>
2025-03-14 16:14:10 -06:00
<h2 className="text-xl font-semibold text-gray-800 mb-4">
Recent Listings
</h2>
<div className="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-4 gap-6">
2025-03-05 22:30:52 -07:00
{listings.map((listing) => (
<Link
key={listing.id}
to={`/product/${listing.id}`}
className="bg-white border border-gray-200 hover:shadow-md transition-shadow"
>
<div className="relative">
2025-03-14 16:14:10 -06:00
<img
src={listing.image}
alt={listing.title}
className="w-full h-48 object-cover"
/>
2025-03-05 22:30:52 -07:00
<button
onClick={(e) => toggleFavorite(listing.id, e)}
className="absolute top-2 right-2 p-1 bg-white rounded-full shadow-sm"
>
<Heart
className={`h-5 w-5 ${
2025-03-14 16:14:10 -06:00
listing.isFavorite
? "text-red-500 fill-red-500"
: "text-gray-400"
2025-03-05 22:30:52 -07:00
}`}
/>
</button>
</div>
2025-03-14 16:14:10 -06:00
2025-03-05 22:30:52 -07:00
<div className="p-4">
<div className="flex justify-between items-start mb-2">
<h3 className="text-lg font-medium text-gray-800 leading-tight">
{listing.title}
</h3>
2025-03-14 16:14:10 -06:00
<span className="font-semibold text-green-600">
${listing.price}
</span>
2025-03-05 22:30:52 -07:00
</div>
2025-03-14 16:14:10 -06:00
2025-03-05 22:30:52 -07:00
<div className="flex items-center text-sm text-gray-500 mb-3">
<Tag className="h-4 w-4 mr-1" />
<span>{listing.category}</span>
<span className="mx-2"></span>
<span>{listing.condition}</span>
</div>
2025-03-14 16:14:10 -06:00
2025-03-05 22:30:52 -07:00
<div className="flex justify-between items-center pt-2 border-t border-gray-100">
2025-03-14 16:14:10 -06:00
<span className="text-xs text-gray-500">
{listing.datePosted}
</span>
<span className="text-sm font-medium text-gray-700">
{listing.seller}
</span>
2025-03-05 22:30:52 -07:00
</div>
</div>
</Link>
))}
</div>
</div>
</div>
);
};
2025-03-14 16:14:10 -06:00
export default Home;