Skip to content

Commit

Permalink
refactor : project component 규격
Browse files Browse the repository at this point in the history
  • Loading branch information
heesane committed Nov 22, 2024
1 parent fb71163 commit c4bfa7d
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions next/src/app/projects/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,14 @@ import { ProjectId } from '@/type/interface'

export default function Home({params}: {params: ProjectId}) {
return (
<div>
<h1>
{params.id}
</h1>
<div className="container mx-auto py-14 px-4 sm:px-6 lg:px-8 justify-between">
<div className="text-2xl font-bold sm:text-4xl sm:px-6 lg:px-8 px-4 justify-between">
<div className="px-4 sm:px-6 lg:px-8">
<h1>{params.id}</h1>

<p className="mt-4 text-lg">Coming soon...</p>
</div>
</div>
</div>
)
}

0 comments on commit c4bfa7d

Please sign in to comment.