-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b403ab6
commit 2d9e720
Showing
3 changed files
with
47 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
import { Container } from '~/components/ui/Container'; | ||
import { FadeIn } from '~/components/ui/FadeIn'; | ||
import { SectionIntro } from '~/components/ui/SectionIntro'; | ||
|
||
export function TechForm() { | ||
return ( | ||
<div className="mt-24 sm:mt-0 sm:py-32"> | ||
<SectionIntro title="Tech Day Registration Open"> | ||
<p> | ||
<strong>Join us and be part of the innovation!</strong>{' '} | ||
Explore the latest tech trends and network with industry leaders at Tech Day | ||
</p> | ||
</SectionIntro> | ||
<Container className="mt-16"> | ||
<FadeIn> | ||
<div className="rounded-2xl"> | ||
<iframe | ||
src="https://airtable.com/embed/apptfFi1y2StuEQ7s/pagcUDiOUo0NzSooJ/form" | ||
title="Tech Day Registration Form" | ||
style={{ | ||
borderRadius: '12px', | ||
width: '100%', | ||
height: '600px', | ||
}} | ||
className="" | ||
allowFullScreen={true} | ||
aria-hidden="false" | ||
tabIndex={0} | ||
></iframe> | ||
</div> | ||
</FadeIn> | ||
</Container> | ||
<style> | ||
{` | ||
.arrow { | ||
transform: rotate(-45deg); | ||
display: inline-block; | ||
} | ||
`} | ||
</style> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters