From b1a65cf1f04cbf3ecdcb2c10971011fb19b4f02e Mon Sep 17 00:00:00 2001 From: Grayash Date: Mon, 9 Sep 2024 10:10:05 +0900 Subject: [PATCH] Add ContactSection component to page layout --- src/app/components/ContactSection/Contact.tsx | 45 +++++++++++++++++++ src/app/components/ContactSection/index.tsx | 38 ++++++++++++++++ src/app/components/FAQSection/index.tsx | 2 +- src/app/page.tsx | 2 + 4 files changed, 86 insertions(+), 1 deletion(-) create mode 100644 src/app/components/ContactSection/Contact.tsx create mode 100644 src/app/components/ContactSection/index.tsx diff --git a/src/app/components/ContactSection/Contact.tsx b/src/app/components/ContactSection/Contact.tsx new file mode 100644 index 0000000..bca7254 --- /dev/null +++ b/src/app/components/ContactSection/Contact.tsx @@ -0,0 +1,45 @@ +"use client"; + +import { useState } from "react"; +import FadeIn from "../FadeIn"; + +export default function Contact() { + const [isLoaded, setIsLoaded] = useState(false); + + return ( + + {isLoaded ? undefined : ( +
+ + + + +
+ )} +