Skip to content

Commit effa67a

Browse files
committed
feat : contact 구성 요소
1 parent a6585b8 commit effa67a

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import ContactCard from "@/components/ui/contactCard";
2+
3+
export default function ContactContainer() {
4+
return (
5+
<div>
6+
<ContactCard />
7+
</div>
8+
);
9+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
export default function ContactCard(){
2+
return (
3+
<div>
4+
<h1>Contact Me!</h1>
5+
<p>Phone: 01071329458</p>
6+
7+
</p>
8+
</div>
9+
);
10+
}

0 commit comments

Comments
 (0)