diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..0b55d73 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,95 @@ +import React, { FC } from "react"; +import SectionSubscribe2 from "@/components/SectionSubscribe2"; +import SocialsList from "@/shared/SocialsList"; +import Label from "@/components/Label"; +import Input from "@/shared/Input"; +import Textarea from "@/shared/Textarea"; +import ButtonPrimary from "@/shared/ButtonPrimary"; + +export interface PageContactProps {} + +const info = [ + { + title: "🗺 ADDRESS", + desc: "Photo booth tattooed prism, portland taiyaki hoodie neutra typewriter", + }, + { + title: "💌 EMAIL", + desc: "nc.example@example.com", + }, + { + title: "☎ PHONE", + desc: "000-123-456-7890", + }, +]; + +const PageContact: FC = ({}) => { + return ( +
+
+

+ Contact +

+
+
+
+ {info.map((item, index) => ( +
+

+ {item.title} +

+ + {item.desc} + +
+ ))} +
+

+ 🌏 SOCIALS +

+ +
+
+
+
+ + +