You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
import { Container } from '@/components/Container'
export default async function Page ( ) {
return (
< div className = "pt-16 pb-12 sm:pb-4 lg:pt-12" >
< Container >
< h1 className = "text-2xl font-bold leading-7 text-slate-900" >
Contact Us
< / h 1 >
< div className = "divide-y divide-slate-100 sm:mt-4 lg:mt-8 lg:border-t lg:border-slate-100" >
< p className = "mt-4 italic" >
Like the show ? Want to hear us talk about something specific ? Or just want to say hi ? We ’ d love to hear from you !
< / p >
< p className = "mt-4 italic" >
Send an email to thereactshow [ at ] thintz . com with the word & quot ; NORIS & quot ; somewhere in the subject line ( to help with spam ) . Looking forward to it !
< / p >
< / d i v >
< / C o n t a i n e r >
< / d i v >
) ;
}