deechael.net/app/pricing/page.tsx

10 lines
172 B
TypeScript
Raw Normal View History

2024-09-18 22:54:40 +08:00
import { title } from "@/components/primitives";
export default function PricingPage() {
return (
<div>
<h1 className={title()}>Pricing</h1>
</div>
);
}