-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: ✨ add a contact form * fix: 🐛 more script to head tag * fix: 🐛 update text
- Loading branch information
1 parent
a6412fd
commit b1160da
Showing
3 changed files
with
53 additions
and
212 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 was deleted.
Oops, something went wrong.
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,52 @@ | ||
import { SkipNavContent, SkipNavLink } from '@chakra-ui/skip-nav'; | ||
import Head from 'next/head'; | ||
|
||
import Layout from '@/components/layout/Layout'; | ||
import Seo from '@/components/Seo'; | ||
|
||
export default function ContactUs() { | ||
return ( | ||
<> | ||
<Head> | ||
<script async src='https://tally.so/widgets/embed.js'></script> | ||
</Head> | ||
|
||
<SkipNavLink>Skip to content</SkipNavLink> | ||
|
||
<Layout> | ||
<Seo templateTitle='Contact Us' /> | ||
|
||
<main> | ||
<SkipNavContent /> | ||
|
||
<section className='bg-white '> | ||
<div className='mx-auto max-w-screen-md px-4 py-8 lg:py-16'> | ||
<h1 className='mb-1 text-center text-3xl font-extrabold tracking-tight sm:text-4xl'> | ||
Contact Us | ||
</h1> | ||
|
||
<p className='mb-6 text-center text-xl font-normal text-slate-600 sm:mb-8'> | ||
Have a question about our project? Want to provide feedback | ||
about our dataset or anything else? Need help using our data? | ||
Let us know! | ||
</p> | ||
|
||
{/* <p className='my-12 hidden w-full rounded-lg bg-yellow-50 p-10 text-center text-xl font-normal text-slate-600 sm:mb-8'> | ||
We are not taking any queries at this time. <br /> We hope you | ||
can find all the necessary information on our website. | ||
</p> */} | ||
|
||
<iframe | ||
data-tally-src='https://tally.so/embed/wdY71y?alignLeft=1&hideTitle=1&transparentBackground=1&dynamicHeight=1' | ||
loading='lazy' | ||
width='100%' | ||
height='276' | ||
title='AI-READI Contact Form' | ||
></iframe> | ||
</div> | ||
</section> | ||
</main> | ||
</Layout> | ||
</> | ||
); | ||
} |