diff --git a/Benjamin/app/(auth)/login/page.tsx b/Benjamin/app/(auth)/login/page.tsx index 6ce563c..e813906 100644 --- a/Benjamin/app/(auth)/login/page.tsx +++ b/Benjamin/app/(auth)/login/page.tsx @@ -19,7 +19,7 @@ const Login = () => { toast.error(error); setError(""); } - +// IMP: Dont remove the below comments!!!! // const handleSubmit = async (e: React.FormEvent) => { // setloading(true) // e.preventDefault(); @@ -43,27 +43,27 @@ const Login = () => { const [isResetOpen, setIsResetOpen] = useState(false); return ( - <> +
{/*
{switchCss ? "1" : "0"}
*/}
-
+
{/* First background div */}
{/* Second background div */}
{switchCss && !isResetOpen && (
-
+
Login
{ value={email} onChange={(e) => setEmail(e.target.value)} /> - +
{ value={password} onChange={(e) => setPassword(e.target.value)} /> - +
setIsResetOpen(!isResetOpen)} > Forgot Password?
-
+
Don't have an account?
setSwitchCss(!switchCss)} > {" "} @@ -120,7 +120,7 @@ const Login = () => { {switchCss && isResetOpen && (
-
+
Forgot Password
@@ -129,13 +129,13 @@ const Login = () => { type="text" placeholder="Email" /> - +
-
setIsResetOpen(!isResetOpen)} > Back to Login @@ -159,7 +159,7 @@ const Login = () => { {!switchCss && (
-
+
Sign Up
@@ -168,7 +168,7 @@ const Login = () => { type="text" placeholder="Username" /> - +
{ type="password" placeholder="Enter Password" /> - +
{ type="password" placeholder="Confirm Password" /> - +
- -
+
Already have an account?
setSwitchCss(!switchCss)} > {" "} @@ -204,7 +204,7 @@ const Login = () => {
- +
); }; diff --git a/Benjamin/app/Cart/components/cart-item.tsx b/Benjamin/app/Cart/components/cart-item.tsx index 29f86a9..c7205e2 100644 --- a/Benjamin/app/Cart/components/cart-item.tsx +++ b/Benjamin/app/Cart/components/cart-item.tsx @@ -15,13 +15,14 @@ const CartItem:React.FC = ({ // } return ( -
  • -
    +
  • +
    product image
    @@ -33,12 +34,12 @@ const CartItem:React.FC = ({
    -

    +

    {item.name}

    -

    +

    {/* haha */} {item.variant}

    @@ -47,7 +48,7 @@ const CartItem:React.FC = ({ {item.count}

    -
    ₹{item.price}
    +
    ₹{item.price}
  • diff --git a/Benjamin/app/Cart/components/summary.tsx b/Benjamin/app/Cart/components/summary.tsx index 9fe5ff7..4f48cd7 100644 --- a/Benjamin/app/Cart/components/summary.tsx +++ b/Benjamin/app/Cart/components/summary.tsx @@ -31,11 +31,12 @@ const Summary = () => { lg:col-span-5 lg:mt-0 lg:p-8 + dark:bg-gray-700 " > -
    -

    Order Summary

    -

    Your Details

    +
    +

    Order Summary

    +

    Your Details

    {/* Each Inputbox component handles its respective field */}
    { ₹{566}
    -
    diff --git a/Benjamin/app/Cart/page.tsx b/Benjamin/app/Cart/page.tsx index 18b2741..e3d2c29 100644 --- a/Benjamin/app/Cart/page.tsx +++ b/Benjamin/app/Cart/page.tsx @@ -60,9 +60,9 @@ const CartPage = () => { if (!isMounted) return null; return ( -
    +
    -

    Shopping Cart

    +

    Shopping Cart

    {/* {cart.items.length===0&&} */} diff --git a/Benjamin/app/Contact/page.tsx b/Benjamin/app/Contact/page.tsx index 3e5e3f7..cb15b42 100644 --- a/Benjamin/app/Contact/page.tsx +++ b/Benjamin/app/Contact/page.tsx @@ -4,22 +4,22 @@ import { Clock, Mail, MapPin, Phone } from "lucide-react"; const Contact = () => { return ( -
    +
    -
    +
    Contact Us
    -
    +
    Contact Us For Any Query
    -
    +
    Have a question or need assistance? We're here to help! Reach out to us for any inquiries regarding your orders, deliveries, or shopping experience with EzyShop. We're happy to assist you with all your @@ -27,38 +27,38 @@ const Contact = () => {
    -
    - +
    +
    -
    Address
    +
    Address
    Jaipur, Rajisthan
    -
    - +
    +
    -
    Email
    +
    Email
    ezyshop@gmail.com
    -
    - +
    +
    -
    Phone
    +
    Phone
    +91 7739317870
    -
    - +
    +
    -
    Opening Hours
    +
    Opening Hours
    Our platform is available 24/7. For customer support
    diff --git a/Benjamin/app/WishList/components/wishlistItem.tsx b/Benjamin/app/WishList/components/wishlistItem.tsx index 2bab916..c277786 100644 --- a/Benjamin/app/WishList/components/wishlistItem.tsx +++ b/Benjamin/app/WishList/components/wishlistItem.tsx @@ -12,13 +12,13 @@ interface wishlistItemProps{ // WishlistItem.js const WishlistItem:React.FC = ({ item }) => { return ( -
    +
    {item.name} -

    {item.name}

    +

    {item.name}

    ₹{item.price}

    - - + +
    ); diff --git a/Benjamin/app/WishList/page.tsx b/Benjamin/app/WishList/page.tsx index f3806aa..9da8a28 100644 --- a/Benjamin/app/WishList/page.tsx +++ b/Benjamin/app/WishList/page.tsx @@ -19,8 +19,8 @@ const wishlistItems = [ const Wishlist = () => { return ( -
    -
    +
    +
    Wish List
    @@ -35,7 +35,7 @@ const Wishlist = () => { ) : (

    Your wishlist is empty!

    - +
    )}
    diff --git a/Benjamin/components/contactUsForm.tsx b/Benjamin/components/contactUsForm.tsx index fc5e8ed..bd8ed37 100644 --- a/Benjamin/components/contactUsForm.tsx +++ b/Benjamin/components/contactUsForm.tsx @@ -9,7 +9,7 @@ const ContactUsFrom = () => {