Skip to content

Commit

Permalink
feat : contact 구성 요소
Browse files Browse the repository at this point in the history
  • Loading branch information
heesane committed Nov 24, 2024
1 parent a6585b8 commit effa67a
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
9 changes: 9 additions & 0 deletions next/src/components/contactContainer.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import ContactCard from "@/components/ui/contactCard";

export default function ContactContainer() {
return (
<div>
<ContactCard />
</div>
);
}
10 changes: 10 additions & 0 deletions next/src/components/ui/contactCard.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
export default function ContactCard(){
return (
<div>
<h1>Contact Me!</h1>
<p>Phone: 01071329458</p>
<p>Email: [email protected]
</p>
</div>
);
}

0 comments on commit effa67a

Please sign in to comment.