From 917c76bea8f882860d6b56c70fad63f47d6bfae5 Mon Sep 17 00:00:00 2001 From: rin <62606765+chuangyu-hscy@users.noreply.github.com> Date: Fri, 29 Dec 2023 23:50:30 +1100 Subject: [PATCH] Added Basic Blog Component --- components/layout/blog/gallary.jsx | 36 ++++++++++++++++++++++++++++-- 1 file changed, 34 insertions(+), 2 deletions(-) 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

+ +
+ ); +};