Seperator 컴포넌트 추가 및 페이지에서 사용, 스타일 수정
This commit is contained in:
parent
6f7257e944
commit
002b071c72
5 changed files with 213 additions and 118 deletions
|
|
@ -29,7 +29,7 @@ const projects = [
|
|||
|
||||
export default function Projects() {
|
||||
return (
|
||||
<div id="projects">
|
||||
<div id="projects" className="mt-8">
|
||||
<div className="space-y-8">
|
||||
{projects.map((project, index) => (
|
||||
<ProjectsComponents key={index} project={project} />
|
||||
|
|
|
|||
5
src/components/Seperator.tsx
Normal file
5
src/components/Seperator.tsx
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
export default function Seperator() {
|
||||
return (
|
||||
<div className="border-t-1 border-muted rounded-full mt-8" />
|
||||
)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue