diff --git a/src/app/signup/page.tsx b/src/app/signup/page.tsx new file mode 100644 index 0000000..f4606db --- /dev/null +++ b/src/app/signup/page.tsx @@ -0,0 +1,97 @@ +import React, { FC } from "react"; +import facebookSvg from "@/images/Facebook.svg"; +import twitterSvg from "@/images/Twitter.svg"; +import googleSvg from "@/images/Google.svg"; +import Input from "@/shared/Input"; +import ButtonPrimary from "@/shared/ButtonPrimary"; +import Image from "next/image"; +import Link from "next/link"; + +export interface PageSignUpProps {} + +const loginSocials = [ + { + name: "Continue with Facebook", + href: "#", + icon: facebookSvg, + }, + { + name: "Continue with Twitter", + href: "#", + icon: twitterSvg, + }, + { + name: "Continue with Google", + href: "#", + icon: googleSvg, + }, +]; + +const PageSignUp: FC = ({}) => { + return ( +
+
+

+ Signup +

+
+
+ {loginSocials.map((item, index) => ( + + {item.name} +

+ {item.name} +

+
+ ))} +
+ {/* OR */} +
+ + OR + +
+
+ {/* FORM */} +
+ + + Continue +
+ + {/* ==== */} + + Already have an account? {` `} + + Sign in + + +
+
+
+ ); +}; + +export default PageSignUp;