web-humas-fe/app/pricing/page.tsx

10 lines
163 B
TypeScript
Raw Normal View History

2024-01-05 06:57:30 +00:00
import { title } from "@/components/primitives";
export default function PricingPage() {
return (
<div>
<h1 className={title()}>Pricing</h1>
</div>
);
}