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.
15 lines
393 B
React
15 lines
393 B
React
2 years ago
|
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">
|
||
|
The Reactors
|
||
|
</h1>
|
||
|
<a href="https://buy.stripe.com/test_3cs01j768d65gso289">Level I</a>
|
||
|
</Container>
|
||
|
</div>
|
||
|
);
|
||
|
};
|