add edit button

This commit is contained in:
Nareshkumar Rao 2025-04-02 01:42:57 +02:00
parent a661d6e690
commit 2eb60f12a0

View File

@ -146,13 +146,34 @@ export default function PostDisplay({
<div <div
style={{ style={{
display: "flex", display: "flex",
justifyContent: "flex-end", justifyContent: "space-between",
marginTop: "1rem", marginTop: "1rem",
userSelect: "none",
cursor: "pointer",
backgroundColor: "transparent",
}} }}
> >
{loggedIn ? (
<div
style={{
backgroundColor: "#a66",
color: "#111",
fontSize: "0.8rem",
padding: "0.5rem",
transition: "background-color 0.3s linear",
userSelect: "none",
cursor: "pointer",
}}
onMouseOver={(e) => {
e.currentTarget.style.backgroundColor = "#c88";
}}
onMouseOut={(e) => {
e.currentTarget.style.backgroundColor = "#a66";
}}
onClick={() => router.push(`/blog/write/${post.slug}`)}
>
edit
</div>
) : (
<div></div>
)}
<span <span
style={{ style={{
backgroundColor: "#999", backgroundColor: "#999",
@ -160,6 +181,8 @@ export default function PostDisplay({
fontSize: "0.8rem", fontSize: "0.8rem",
padding: "0.5rem", padding: "0.5rem",
transition: "background-color 0.3s linear", transition: "background-color 0.3s linear",
userSelect: "none",
cursor: "pointer",
}} }}
onMouseOver={(e) => { onMouseOver={(e) => {
e.currentTarget.style.backgroundColor = "#eee"; e.currentTarget.style.backgroundColor = "#eee";