aboutsummaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
authorJeff <jeffkleinaitis@gmail.com>2024-04-04 21:13:49 -0400
committerJeff <jeffkleinaitis@gmail.com>2024-04-04 21:13:49 -0400
commit4be1d15a66e012ac8d2aa82d75aea51bb52e3cf8 (patch)
tree16cb74f91bbe466a2b0bf33fffe3ca869aae4cd3 /components
parente73eac13d3337932191b9820c0d43455ba70dec8 (diff)
deleted unused files
Diffstat (limited to 'components')
-rw-r--r--components/signup.js82
1 files changed, 0 insertions, 82 deletions
diff --git a/components/signup.js b/components/signup.js
deleted file mode 100644
index e345584..0000000
--- a/components/signup.js
+++ /dev/null
@@ -1,82 +0,0 @@
-import Image from "next/image";
-import React from "react";
-import Container from "./container";
-
-const SignUp = (props) => {
- const { data } = props;
- return (
- <>
- <Container className="flex flex-wrap mb-0 lg:gap-10 lg:flex-nowrap">
- <div
- className={`flex items-center justify-center w-full lg:w-1/2 hidden lg:flex ${
- props.imgPos === "right" ? "lg:order-1" : ""
- }`}>
- <div>
- <Image
- src={data.image}
- width="521"
- height="auto"
- alt="Benefits"
- className={"object-cover"}
- placeholder="blur"
- blurDataURL={data.image.src}
- />
- </div>
- </div>
-
- <div
- className={`flex items-center justify-center w-full lg:w-1/2 ${
- data.imgPos === "right" ? "lg:justify-end" : ""
- }`}>
-
- <div>
- <div className="flex flex-col w-full mt-4">
- <h3 className="max-w-2xl mt-3 text-3xl font-bold leading-snug tracking-tight text-gray-800 lg:leading-tight lg:text-4xl dark:text-white">
- Sign in to your account
- </h3>
- <p className="max-w-2xl text-lg leading-normal text-gray-500 lg:text-xl xl:text-xl dark:text-gray-300">
- sign in pls
- </p>
- </div>
- <div className="mt-5 sm:mx-auto sm:w-full sm:max-w-sm">
- <form className="space-y-3" action="#" method="POST">
- <div>
- <label htmlFor="email" className="block text-sm font-medium leading-6 text-gray-900">Email address</label>
- <div className="mt-0">
- <input id="email" name="email" type="email" autoComplete="email" required className="block w-full rounded-md border-0 py-1.5 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm sm:leading-6"/>
-
- </div>
- </div>
-
- <div>
- <div className="flex items-center justify-between">
- <label htmlFor="password" className="block text-sm font-medium leading-6 text-gray-900">Password</label>
- <div className="text-sm">
- <a href="#" className="font-semibold text-indigo-600 hover:text-indigo-500">Forgot password?</a>
- </div>
- </div>
- <div className="mt-0 mb-4">
- <input id="password" name="password" type="password" autoComplete="current-password" required className="block w-full rounded-md border-0 py-1.5 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm sm:leading-6"/>
- </div>
- </div>
-
- <div>
- <button type="submit" className="flex w-full justify-center rounded-md bg-indigo-600 px-10 py-1.5 text-sm font-semibold leading-6 text-white shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600">Sign in</button>
- </div>
- </form>
-
- <p class="mt-10 text-center text-sm text-gray-500">
- Don't have an account?
- <a href="#" className="font-semibold leading-6 text-indigo-600 hover:text-indigo-500"> Create an account instead</a>
- </p>
- </div>
- </div>
- </div>
- </Container>
- </>
- );
-};
-
-
-
-export default SignUp;