import Heading from "@/components/ui/Heading";
export default function Page() {
return (
<>
<Heading as="h1">I think therefore I am</Heading>
<Heading as="h2">I think therefore I am</Heading>
<Heading as="h4">I think therefore I am</Heading>
<Heading as="h4">I think therefore I am</Heading>
<Heading as="h5">I think therefore I am</Heading>
<Heading as="h6">I think therefore I am</Heading>
</>
)
}