Goldzilla
import React, { useState } from "react";
import { Card, CardContent } from "@/components/ui/card";
import { Input } from "@/components/ui/input";
import { Button } from "@/components/ui/button";
import { motion } from "framer-motion";
export default function GoldzillaAuth() {
const [isSignUp, setIsSignUp] = useState(true);
return (
);
}
{isSignUp ? "Welcome to" : "Glad to see you again at"}
Goldzilla
{isSignUp ? "Step into the world of smart earnings with Goldzilla." : "Sign in to unlock your earnings and explore new opportunities."}
{isSignUp ? ( ) : ( )}{isSignUp ? ( <> Already have an account?{' '} > ) : ( <> Don’t have an account?{' '} > )}
Comments
Post a Comment