15 lines
286 B
TypeScript
15 lines
286 B
TypeScript
import { Container } from "@/components/layout/Container";
|
|
import { Section } from "@/components/layout/Section";
|
|
|
|
export default function Page() {
|
|
return (
|
|
<main>
|
|
<Section>
|
|
<Container>
|
|
<p>Ready</p>
|
|
</Container>
|
|
</Section>
|
|
</main>
|
|
);
|
|
}
|