From effa67a35456e5a5f95aedf5ec1d09b26ade63c1 Mon Sep 17 00:00:00 2001 From: heesane Date: Mon, 25 Nov 2024 00:11:08 +0900 Subject: [PATCH] =?UTF-8?q?feat=20:=20contact=20=EA=B5=AC=EC=84=B1=20?= =?UTF-8?q?=EC=9A=94=EC=86=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- next/src/components/contactContainer.tsx | 9 +++++++++ next/src/components/ui/contactCard.tsx | 10 ++++++++++ 2 files changed, 19 insertions(+) diff --git a/next/src/components/contactContainer.tsx b/next/src/components/contactContainer.tsx index e69de29..279f534 100644 --- a/next/src/components/contactContainer.tsx +++ b/next/src/components/contactContainer.tsx @@ -0,0 +1,9 @@ +import ContactCard from "@/components/ui/contactCard"; + +export default function ContactContainer() { + return ( +
+ +
+ ); +} \ No newline at end of file diff --git a/next/src/components/ui/contactCard.tsx b/next/src/components/ui/contactCard.tsx index e69de29..8833226 100644 --- a/next/src/components/ui/contactCard.tsx +++ b/next/src/components/ui/contactCard.tsx @@ -0,0 +1,10 @@ +export default function ContactCard(){ + return ( +
+

Contact Me!

+

Phone: 01071329458

+

Email: tees3359@gmail.com +

+
+ ); +} \ No newline at end of file