features done

This commit is contained in:
Arjun Patel
2022-01-26 18:10:11 -08:00
parent d4212f98db
commit dd46f21454
3 changed files with 114 additions and 16 deletions
+12 -1
View File
@@ -1,3 +1,14 @@
import LangingPageLayout from "../components/Layouts/LandingPageLayout";
export default function Pricing() {
return <div>this is the pricing page</div>;
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>
);
}