Files
nirvana/pages/pricing.tsx
T
2022-01-26 18:10:11 -08:00

15 lines
403 B
TypeScript

import LangingPageLayout from "../components/Layouts/LandingPageLayout";
export default function Pricing() {
return (
<LangingPageLayout>
<div className="flex flex-row">
<span className="flex flex-col items-start">
<span>Your WFH Hub</span>
<span>Actively working on new and exciting features.</span>
</span>
</div>
</LangingPageLayout>
);
}