Files
SkinbaseNova/resources/js/Pages/Home/HomeFresh.jsx
2026-03-17 18:34:26 +01:00

23 lines
681 B
JavaScript

import React from 'react'
import ArtworkGalleryGrid from '../../components/artwork/ArtworkGalleryGrid'
export default function HomeFresh({ items }) {
if (!Array.isArray(items) || items.length === 0) return null
return (
<section className="mt-14 px-4 sm:px-6 lg:px-8">
<div className="mb-5 flex items-center justify-between">
<h2 className="text-xl font-bold text-white">🆕 Fresh Uploads</h2>
<a href="/discover/fresh" className="text-sm text-nova-300 hover:text-white transition">
See all
</a>
</div>
<ArtworkGalleryGrid
items={items.slice(0, 8)}
showStats={false}
/>
</section>
)
}