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.

22 lines
825 B
React

3 years ago
import { Container } from '@/components/Container'
export default async function Page() {
3 years ago
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? Wed love to hear from you!
</p>
<p className="mt-4 italic">
2 weeks ago
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>
</div>
3 years ago
</Container>
</div>
);
}