diff --git a/components/layout/blog/gallary.jsx b/components/layout/blog/gallary.jsx index 428d1bc..402f845 100644 --- a/components/layout/blog/gallary.jsx +++ b/components/layout/blog/gallary.jsx @@ -1,6 +1,7 @@ import React from "react"; import Image from "next/image"; import { useEffect, useState } from "react"; +import Link from "next/link"; export default function BlogBrowsing() { const [projects, setProjects] = useState([]); @@ -23,7 +24,7 @@ export default function BlogBrowsing() {

The Meow-nificent Blog for Digital Crafters ๐Ÿงถ

-
+
-
Lastest Blog
+
+ + +
); } + +export const StarredBlog = () => { + return ( +
+
+

โญ Starred

+
+ +

+ The Transformative Impact of Data Science on Business Efficiency and + Growth +

+ +
+ ); +}; + +export const LatestBlog = () => { + return ( +
+

๐Ÿ“… Latest Post

+ + +

Lorem Ipsum

+ +
+ ); +};