Skip to content

UI Overhaul + Additional speakers #182

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Mar 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added src/assets/xt25/Artboard 10.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/xt25/Artboard 9.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/assets/xt25/Jing Ai.jpeg
Binary file not shown.
Binary file not shown.
Binary file removed src/assets/xt25/XT25-alexey-gabstarov-CTO-Kroo.jpeg
Binary file not shown.
Binary file not shown.
Binary file removed src/assets/xt25/alx.jpg
Binary file not shown.
Binary file removed src/assets/xt25/eoinwoods.jpg
Binary file not shown.
Binary file added src/assets/xt25/xt25-ald.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/xt25/xt25-alg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/xt25/xt25-dac.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/xt25/xt25-dol.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/xt25/xt25-eow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/xt25/xt25-heg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/xt25/xt25-jia.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/xt25/xt25-jop.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/xt25/xt25-mas.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/xt25/xt25-pew.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/xt25/xt25-rom.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/xt25/xt25-srg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 17 additions & 17 deletions src/components/ContactUsFormXT24.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default function ContactUsFormXT24(props) {
const hasErrors = Object.keys(errors).length > 0

const isSubmitSuccessfulComponent = (
<div className='pt-10 text-center text-xl md:text-xl text-juxt'>
<div className='pt-10 text-center text-xl md:text-xl text-black'>
Thank you for your interest in XT25!
<br />
We'll reach out if spots become available.
Expand All @@ -65,7 +65,7 @@ export default function ContactUsFormXT24(props) {

{!isSubmitted && (
<div className='text-center'>
<span className='uppercase text-center'>
<span className='text-center'>
Interested in Receiving an Invite?
<br />
Leave us your details, and we'll get back to you.
Expand Down Expand Up @@ -101,7 +101,7 @@ export default function ContactUsFormXT24(props) {
<input
{...inputProps}
{...register('email', { required: true })}
placeholder='Work Email'
placeholder='Email'
type='email'
/>

Expand All @@ -111,18 +111,13 @@ export default function ContactUsFormXT24(props) {
{...register('jobTitle', { required: true })}
placeholder='Job Title'
/>
<input
{...inputProps}
{...register('company', { required: true })}
placeholder='Company'
/>
</div>

<div className='flex flex-row gap-4'>
<input
{...inputProps}
{...register('phone')}
placeholder='Phone (optional)'
{...register('company', { required: true })}
placeholder='Company'
/>
<input
{...inputProps}
Expand All @@ -132,7 +127,7 @@ export default function ContactUsFormXT24(props) {
</div>

<div className='text-xs font-light'>
By submitting your details you agree to JUXTs{' '}
By submitting your details you agree to JUXT's{' '}
<a href='/privacy-policy' target='_blank' className='underline'>
Privacy Policy
</a>
Expand All @@ -142,12 +137,17 @@ export default function ContactUsFormXT24(props) {
<div className='text-red-500'>All fields are required</div>
)}

<input
type='submit'
value='Submit'
disabled={isSubmitting}
className='bg-juxt px-4 py-3 text-white hover:text-zinc-800 font-bold hover:shadow-lg visited:text-white active:text-white text-md rounded-sm cursor-pointer disabled:opacity-50 disabled:cursor-not-allowed'
/>
<div className='grid grid-cols-5 gap-4 mb-[-20px]'>
<div className='col-span-3'></div>
<div className='col-span-2'>
<input
type='submit'
value='Submit'
disabled={isSubmitting}
className='bg-black px-4 py-2 text-white hover:bg-orange-100 hover:text-juxt font-bold shadow rounded-full cursor-pointer disabled:opacity-50 disabled:cursor-not-allowed text-sm w-full'
/>
</div>
</div>
</form>
</>
)
Expand Down
Loading