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