diff --git a/src/components/project/ProjectDetail.tsx b/src/components/project/ProjectDetail.tsx index 299c781..b7a6105 100644 --- a/src/components/project/ProjectDetail.tsx +++ b/src/components/project/ProjectDetail.tsx @@ -118,21 +118,6 @@ export async function ProjectDetail({ project, locale }: ProjectDetailProps) { {/* Full content with Markdown rendering */} {displayContent && } - - {/* Installation section if GitHub link exists */} - {project.links.some((l) => l.type === 'GITHUB') && ( - <> -

{t('gettingStarted')}

-

{t('installInstructions')}

-
-              {`git clone ${
-                project.links.find((l) => l.type === 'GITHUB')?.url || 'https://github.com/example/project'
-              }
-cd ${project.slug}
-npm install`}
-            
- - )} {/* Share and Feedback Section - Temporarily disabled for debugging */}