From 139018933fd325a55ed8d3501580f0bdc62d20e8 Mon Sep 17 00:00:00 2001 From: shubidumdu Date: Wed, 15 May 2024 13:47:14 +0900 Subject: [PATCH] Fix build error --- src/app/posts/[postId]/page.tsx | 1 - src/app/projects/page.tsx | 1 - 2 files changed, 2 deletions(-) diff --git a/src/app/posts/[postId]/page.tsx b/src/app/posts/[postId]/page.tsx index e7e980a..ab1337f 100644 --- a/src/app/posts/[postId]/page.tsx +++ b/src/app/posts/[postId]/page.tsx @@ -6,7 +6,6 @@ import Post from '@/app/components/Post'; import TopBar from '@/app/components/TopBar'; import { Metadata } from 'next'; import Comment from '@/app/components/Comment'; -import Background from '@/app/components/Background'; type PageProps = { params: { diff --git a/src/app/projects/page.tsx b/src/app/projects/page.tsx index 13c2121..153c43b 100644 --- a/src/app/projects/page.tsx +++ b/src/app/projects/page.tsx @@ -1,5 +1,4 @@ import { Metadata } from 'next'; -import Background from '../components/Background'; import { ProjectCardProps } from '../components/ProjectCard'; import ProjectCardList from '../components/ProjectCardList'; import TopBar from '../components/TopBar';