Skip to content

Commit 50ef703

Browse files
committed
refactor: do not show images in project pages.
1 parent b3475ec commit 50ef703

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/pages/ProjectPage.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -103,13 +103,13 @@ const ProjectPage = () => {
103103
<h1 className="text-4xl font-bold tracking-tight text-markdown-hx-color sm:text-6xl">
104104
{fullProject.title}
105105
</h1>
106-
{fullProject.image && (
107-
<img
108-
src={fullProject.image}
109-
alt={fullProject.title}
110-
className="mt-8 w-full rounded-lg text-gray-200"
111-
/>
112-
)}
106+
{/*{fullProject.image && (*/}
107+
{/* <img*/}
108+
{/* src={fullProject.image}*/}
109+
{/* alt={fullProject.title}*/}
110+
{/* className="mt-8 w-full rounded-lg text-gray-200"*/}
111+
{/* />*/}
112+
{/*)}*/}
113113
<div className="mt-6 text-lg leading-8 text-gray-300 prose prose-dark">
114114
<ReactMarkdown>{fullProject.fullContent}</ReactMarkdown>
115115
</div>

0 commit comments

Comments
 (0)