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.
|
|
|
|
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
|
|
|
|
|
</h1>
|
|
|
|
|
<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 "NORIS" somewhere in the subject line (to help with spam). Looking forward to it!
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</Container>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|