Skip to content

Commit 41ced09

Browse files
committed
refactor(contact): remove email and threads links from contact section
1 parent a101a4b commit 41ced09

1 file changed

Lines changed: 0 additions & 36 deletions

File tree

components/site/contact-section.tsx

Lines changed: 0 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import { motion, useReducedMotion } from "motion/react";
44
import { ContactForm } from "@/components/site/contact-form";
55
import { SectionHeadingUnderline } from "@/components/site/section-heading-underline";
6-
import { SITE } from "@/lib/site";
76

87
const easeOutExpo = [0.22, 1, 0.36, 1] as const;
98

@@ -61,41 +60,6 @@ export function ContactSection() {
6160
>
6261
확인 후 영업일 기준 24시간 내 회신드리겠습니다.
6362
</motion.p>
64-
<motion.div
65-
variants={item}
66-
className="mt-6 flex flex-wrap items-center gap-x-5 gap-y-2 text-sm"
67-
>
68-
<a
69-
href={`mailto:${SITE.contactEmail}`}
70-
className="inline-flex items-center gap-1.5 text-[var(--color-fg)] transition-colors hover:text-[var(--color-primary)]"
71-
>
72-
<svg
73-
xmlns="http://www.w3.org/2000/svg"
74-
viewBox="0 0 24 24"
75-
fill="none"
76-
stroke="currentColor"
77-
strokeWidth="1.75"
78-
strokeLinecap="round"
79-
strokeLinejoin="round"
80-
aria-hidden
81-
className="h-4 w-4"
82-
>
83-
<rect x="3" y="5" width="18" height="14" rx="2.5" />
84-
<path d="m4 7 8 6 8-6" />
85-
</svg>
86-
<span className="font-medium">{SITE.contactEmail}</span>
87-
</a>
88-
<span aria-hidden className="text-[var(--color-border)]">·</span>
89-
<a
90-
href={`https://www.threads.com/@${SITE.threadsHandle}`}
91-
target="_blank"
92-
rel="noopener noreferrer"
93-
className="text-[var(--color-fg-muted)] transition-colors hover:text-[var(--color-primary)]"
94-
>
95-
Threads{" "}
96-
<span className="font-medium">@{SITE.threadsHandle}</span>
97-
</a>
98-
</motion.div>
9963
<motion.div variants={item} className="mt-8">
10064
<ContactForm />
10165
</motion.div>

0 commit comments

Comments
 (0)