updated event button
This commit is contained in:
parent
4615d1357a
commit
67534515c2
1 changed files with 9 additions and 3 deletions
|
@ -1,7 +1,12 @@
|
||||||
|
"use client"
|
||||||
|
import { Button } from '@/components/ui/button'
|
||||||
import { Input } from '@/components/ui/input'
|
import { Input } from '@/components/ui/input'
|
||||||
import React from 'react'
|
import React, { useState } from 'react'
|
||||||
|
|
||||||
const CreateBusiness = () => {
|
const CreateBusiness = () => {
|
||||||
|
const [businessName, setBusinessName] = useState();
|
||||||
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className='my-20 flex flex-col items-center gap-10 px-5'>
|
<div className='my-20 flex flex-col items-center gap-10 px-5'>
|
||||||
<p className='text-3xl uppercase font-semibold font-outline-2 text-white tracking-wide'>Schedule.Me</p>
|
<p className='text-3xl uppercase font-semibold font-outline-2 text-white tracking-wide'>Schedule.Me</p>
|
||||||
|
@ -9,9 +14,10 @@ const CreateBusiness = () => {
|
||||||
<p className='text-lg font-semibold'>What would you like to be called?</p>
|
<p className='text-lg font-semibold'>What would you like to be called?</p>
|
||||||
<p className='text-sm text-[gray] mb-10'>You can change this later</p>
|
<p className='text-sm text-[gray] mb-10'>You can change this later</p>
|
||||||
<div className='w-full'>
|
<div className='w-full'>
|
||||||
<label className='font-semibold text-[#31363F]'>Team name:</label>
|
<label className='font-semibold text-[#31363F]'>Name:</label>
|
||||||
<Input placeholder="Enter your team name" className='mt-1'/>
|
<Input onChange={(ev) => setBusinessName(ev.target.value)} placeholder="Your organization/team/etc. name" className='mt-1 text-sm'/>
|
||||||
</div>
|
</div>
|
||||||
|
<Button className="w-full mt-[30px]" disabled={!businessName}>Create</Button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue