🚚 reconstructing and fixing file structures
The reconstruction includes moving the Navbar component from shared to widget because Navbar is a group of elements, and removing the login-signup form due to changes in logic that will use a popup flow to improve the user experience without navigating to another page for authentication.
This commit is contained in:
@ -1,27 +0,0 @@
|
||||
"use client";
|
||||
|
||||
import { Button, Form, Input } from "@heroui/react";
|
||||
import React from "react";
|
||||
|
||||
const EmailForm = () => {
|
||||
return (
|
||||
// Form component to handle email input
|
||||
<Form className="mt-12 sm:mt-8">
|
||||
<Input
|
||||
className="w-full "
|
||||
label="Email"
|
||||
type="email"
|
||||
variant="bordered"
|
||||
classNames={{
|
||||
input: "text-md font-light pt-4",
|
||||
inputWrapper: "flex gap-10",
|
||||
}}
|
||||
/>
|
||||
<Button className="mt-2 w-full" color="primary">
|
||||
Continue
|
||||
</Button>
|
||||
</Form>
|
||||
);
|
||||
};
|
||||
|
||||
export default EmailForm;
|
||||
@ -1,25 +0,0 @@
|
||||
import { Button, Form, Input } from "@heroui/react";
|
||||
import React from "react";
|
||||
|
||||
const EmailForm = () => {
|
||||
return (
|
||||
// Form component to handle email input
|
||||
<Form className="mt-12 sm:mt-8">
|
||||
<Input
|
||||
className="w-full "
|
||||
label="Email"
|
||||
type="email"
|
||||
variant="bordered"
|
||||
classNames={{
|
||||
input: "text-md font-light pt-4",
|
||||
inputWrapper: "flex gap-10",
|
||||
}}
|
||||
/>
|
||||
<Button className="mt-2 w-full" color="primary">
|
||||
Continue
|
||||
</Button>
|
||||
</Form>
|
||||
);
|
||||
};
|
||||
|
||||
export default EmailForm;
|
||||
Reference in New Issue
Block a user