diff --git a/src/app/projects/_components/project-info.tsx b/src/app/projects/_components/project-info.tsx
deleted file mode 100644
index 49b09ecc..00000000
--- a/src/app/projects/_components/project-info.tsx
+++ /dev/null
@@ -1,59 +0,0 @@
-import { FiGithub } from 'react-icons/fi'
-import { Project } from '#content'
-import { techIcons } from './tech-icons'
-
-interface Props {
- data: Project
-}
-
-export function ProjectInfo({ data }: Props) {
- const Title = () => (
-
-
{data.title}
-
- {data.core_techs.map(coreTech => {
- const TechIcon = techIcons[coreTech]
- return (
-
-
-
- )
- })}
-
-
- )
- const Tags = () => (
-
- {data.tags.map(tag => (
-
- {tag}
-
- ))}
-
- )
-
- return (
-
-
-
-
{data.description}
-
-
-
-
- )
-}
diff --git a/src/app/projects/page.tsx b/src/app/projects/page.tsx
index 065c9f4c..54ecc2e9 100644
--- a/src/app/projects/page.tsx
+++ b/src/app/projects/page.tsx
@@ -2,9 +2,7 @@ import { ArrowUpRight } from '@phosphor-icons/react/dist/ssr'
import { projects } from '#content'
import { Title } from '~/components/title'
-
import { ProjectCard } from './_components/project-card'
-import { ProjectInfo } from './_components/project-info'
export default function Page() {
const featuredProjects = projects
@@ -30,10 +28,10 @@ export default function Page() {
))}
-
+
{otherProjectsWithoutImage.length > 0 &&
otherProjectsWithoutImage.map(project => (
-
+
))}