From dd46f214541e193ebc41ed7a23f14f53cd1373ce Mon Sep 17 00:00:00 2001 From: Arjun Patel Date: Wed, 26 Jan 2022 18:10:11 -0800 Subject: [PATCH] features done --- components/Layouts/LandingPageLayout.tsx | 19 +---- pages/features.tsx | 98 ++++++++++++++++++++++++ pages/pricing.tsx | 13 +++- 3 files changed, 114 insertions(+), 16 deletions(-) create mode 100644 pages/features.tsx diff --git a/components/Layouts/LandingPageLayout.tsx b/components/Layouts/LandingPageLayout.tsx index 82bb0c9..c42ca23 100644 --- a/components/Layouts/LandingPageLayout.tsx +++ b/components/Layouts/LandingPageLayout.tsx @@ -8,7 +8,6 @@ import MainLogo from "../MainLogo"; enum LandingPageNavigation { home = "/", features = "/features", - useCases = "/usecases", pricing = "/pricing", philosophy = "/philosophy", } @@ -48,7 +47,7 @@ export default function LangingPageLayout({ children }) { window.open("/", "_self")} + onClick={() => window.open(LandingPageNavigation.home, "_self")} className={`text-gray-500 hover:text-teal-600 hover:cursor-pointer ${ currPage == LandingPageNavigation.home ? "text-teal-600 underline underline-offset-4" @@ -59,7 +58,7 @@ export default function LangingPageLayout({ children }) { Features - - Use Cases - + + + Your WFH Hub + + + Come to work with clarity of mind. + + + + + + + + async + Voice Conversations. + + + Listen to your teammate talk to you realtime if you are online. + + + + + + informal + Office Rooms. + + + Nirvana voice-only rooms to collaborate and work with your closest + teammates throughout the day. + + + + + + + + formal + Meeting Rooms. + + + Spontaneous, scheduled, or recurring{" "} + Meet meetings. All conversations + transparent for the team to see. + + + + + + desk + Drawer. + + + Personal and team drawer of links: Jira, Drive, Dropbox, Github, + screenshots, code snippets. + + + + + + + + team + Announcements. + + + Keep your team focused. Mention blockers, priorities, updates... + + + + + + ephemeral + Inbox Zero. + + + Links, conversations, rooms...They all disappear from your main + view to keep you and your team focused. + + + + + + ); +} diff --git a/pages/pricing.tsx b/pages/pricing.tsx index a42bc65..8f8da6b 100644 --- a/pages/pricing.tsx +++ b/pages/pricing.tsx @@ -1,3 +1,14 @@ +import LangingPageLayout from "../components/Layouts/LandingPageLayout"; + export default function Pricing() { - return
this is the pricing page
; + return ( + +
+ + Your WFH Hub + Actively working on new and exciting features. + +
+
+ ); }