mirror of
https://github.com/aljazceru/landscape-template.git
synced 2026-01-21 07:14:29 +01:00
feat: connect feed filters apis with ui, change filters list style
This commit is contained in:
@@ -4,14 +4,16 @@ import ProjectsSection from "./ProjectsSection/ProjectsSection";
|
||||
|
||||
export default function ExplorePage() {
|
||||
return (
|
||||
<>
|
||||
<div className="px-32">
|
||||
<Header />
|
||||
</div>
|
||||
<div className="page-container">
|
||||
|
||||
<Header />
|
||||
|
||||
{/* <div className="my-40 px-32">
|
||||
<Categories />
|
||||
</div> */}
|
||||
<ProjectsSection />
|
||||
</>
|
||||
<div className="w-full overflow-hidden">
|
||||
<ProjectsSection />
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
@@ -6,10 +6,10 @@ export default function ProjectsRowSkeleton() {
|
||||
|
||||
return (
|
||||
<div className='mb-48'>
|
||||
<h3 className="font-bolder text-body3 mb-24 px-32">
|
||||
<h3 className="font-bolder text-body3 mb-24">
|
||||
<Skeleton width='10ch' />
|
||||
</h3>
|
||||
<div className="p-32 flex gap-20">
|
||||
<div className=" flex gap-20">
|
||||
{Array(5).fill(0).map((_, idx) => (
|
||||
<ProjectCardMiniSkeleton key={idx} />
|
||||
))}
|
||||
|
||||
@@ -83,13 +83,13 @@ export default function ProjectsRow({ title, categoryId, projects }: Props) {
|
||||
|
||||
return (
|
||||
<div className='mb-48'>
|
||||
<h3 className="font-bolder text-body3 mb-24 px-32">
|
||||
<h3 className="font-bolder text-body3 mb-24">
|
||||
<span className="align-middle">{title}</span>
|
||||
{categoryId > 0 && <Link to={`/category/${categoryId}`}>
|
||||
<MdDoubleArrow className='text-gray-200 ml-8 hover:cursor-pointer transform scale-y-110 scale-x-125 origin-left' />
|
||||
</Link>}
|
||||
</h3>
|
||||
<div className="px-32">
|
||||
<div className="">
|
||||
<Carousel
|
||||
showDots={false}
|
||||
autoPlay={false}
|
||||
|
||||
Reference in New Issue
Block a user