Skip to content

Repository files navigation

This is a Next.js project bootstrapped with create-next-app.

Getting Started

First, run the development server:

npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev

Open http://localhost:3000 with your browser to see the result.

You can start editing the page by modifying app/page.js. The page auto-updates as you edit the file.

This project uses next/font to automatically optimize and load Geist, a new font family for Vercel.

Learn More

To learn more about Next.js, take a look at the following resources:

You can check out the Next.js GitHub repository - your feedback and contributions are welcome!

Deploy on Vercel

The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.

Check out our Next.js deployment documentation for more details.

import React from "react"; import { zodResolver } from "@hookform/resolvers/zod"; import { useForm } from "react-hook-form"; import { z } from "zod"; import { Button } from "@/components/ui/button" import { Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, } from "@/components/ui/form" import { Input } from "@/components/ui/input" import Formfield from "./Formfield";

const formSchema = z.object({ username: z.string().min(2, { message: "Username must be at least 2 characters.", }), });

const InterviewForm = () => { // 1. Define your form. const form = useForm({ resolver: zodResolver(formSchema), defaultValues: { jobTitle: "", description:"", duration:"", type:"" }, });

// 2. Define a submit handler. function onSubmit(values) { console.log(values); // ✅ Validated values } return (

{!isSignIn && ( )}
        <Button className="btn-primary" type="submit">
          {isSignIn ? "Sign In" : "Create an account"}
        </Button>

        <div>
          {isSignIn ? "Don't have an account?" : "Already have an account?"}{" "}
          <Link
            href={!isSignIn ? "/signin" : "/signup"}
            className="font-bold"
          >
            {isSignIn ? "Sign Up" : "Sign In"}
          </Link>
        </div>
      </form>
    </Form>
) };

export default InterviewForm;

About

PrepMate is a AI POWERED interview platform thet will definitely goin to help you prepare for you interviews

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages