50 lines
1.6 KiB
TypeScript
50 lines
1.6 KiB
TypeScript
import Image from "next/image";
|
|
import React from "react";
|
|
import { FaSlidersH } from "react-icons/fa";
|
|
import Recent_Card from "./Recent_Card";
|
|
|
|
const Recent_Creation: React.FC = () => {
|
|
return (
|
|
<div className="recent_container">
|
|
<div className="recent_title">
|
|
<h3 className="text-[16px] font-[700]">Recent creations</h3>
|
|
<FaSlidersH className="text-[20px] recent_icon" />
|
|
</div>
|
|
<div className="grid sm:grid-cols-2 md:grid-cols-5 gap-4 mt-2">
|
|
<Recent_Card
|
|
image="/assets/aa31529b95af9b43380b88b11692b0a6f7999878.png"
|
|
title="Good morning Gabe Hager!"
|
|
tag="Ebook"
|
|
description="Edited 13 mins ago"
|
|
/>
|
|
<Recent_Card
|
|
image="/assets/d5d8f9fe19a7aed7bf6545a64634eeb37a6b895a.png"
|
|
title="Story of my life (Story by Lak..."
|
|
tag="Ebook"
|
|
description="Edited 5 hours ago"
|
|
/>
|
|
<Recent_Card
|
|
image="/assets/d3cf3b09c1fd3dc0d6a997a7a479337fdf8caa69.png"
|
|
title="Good morning Gabe Hager!"
|
|
tag="Ebook"
|
|
description="Edited 10 mins ago"
|
|
/>
|
|
<Recent_Card
|
|
image="/assets/96c1b745b59fe1512c73f653d7b5e7be3ee54e58.png"
|
|
title="A fantastic saga, the super..."
|
|
tag="Ebook"
|
|
description="Edited 1 month ago"
|
|
/>
|
|
<Recent_Card
|
|
image="/assets/292c2c8f2ea3276c44dc6ade84e687b9cae3d267.png"
|
|
title="Good morning Gabe Hager!"
|
|
tag="Ebook"
|
|
description="Edited 20 hours ago"
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Recent_Creation;
|