diff --git a/components/demo/LandingPageActionBar.tsx b/components/demo/LandingPageActionBar.tsx
new file mode 100644
index 0000000..95a90cb
--- /dev/null
+++ b/components/demo/LandingPageActionBar.tsx
@@ -0,0 +1,25 @@
+import Link from "next/link";
+import { FaAngleRight } from "react-icons/fa";
+
+export default function LandingPageActionBar() {
+ return (
+
+
+ Ready to Focus?
+ {"It's now or never."}
+
+
+
+ Features
+
+
+
+
+ );
+}
diff --git a/pages/features.tsx b/pages/features.tsx
index 548f5e6..4f09a61 100644
--- a/pages/features.tsx
+++ b/pages/features.tsx
@@ -8,6 +8,7 @@ import {
FcOrgUnit,
FcVideoCall,
} from "react-icons/fc";
+import LandingPageActionBar from "../components/demo/LandingPageActionBar";
export default function Features() {
return (
@@ -93,6 +94,8 @@ export default function Features() {
+
+
);
}
diff --git a/pages/index.js b/pages/index.js
index 3016bc2..a5cfa06 100644
--- a/pages/index.js
+++ b/pages/index.js
@@ -27,6 +27,7 @@ import { useState } from "react";
import SkeletonLoader from "../components/Loading/skeletonLoader";
import { useAuth } from "../contexts/authContext";
import LangingPageLayout from "../components/Layouts/LandingPageLayout";
+import LandingPageActionBar from "../components/demo/LandingPageActionBar";
import Link from "next/link";
export default function Home() {
@@ -55,7 +56,8 @@ export default function Home() {
- Messy, Distracted WFH Teams.
+ Messy, Distracted Remote
+ Teams.
@@ -362,14 +364,7 @@ export default function Home() {
{/* action section to get started now */}
-
-
- Ready to Focus?
- {"It's now or never."}
-
-
- {getStartedButton}
-
+
{/* customer testimonial section */}
diff --git a/pages/philosophy.tsx b/pages/philosophy.tsx
index 5066a2c..8d4a956 100644
--- a/pages/philosophy.tsx
+++ b/pages/philosophy.tsx
@@ -2,6 +2,7 @@ import { Divider } from "antd";
import Link from "next/link";
import { useRouter } from "next/router";
import { FaAngleRight } from "react-icons/fa";
+import LandingPageActionBar from "../components/demo/LandingPageActionBar";
import Rooms from "../components/demo/Rooms";
import LangingPageLayout from "../components/Layouts/LandingPageLayout";
@@ -21,6 +22,7 @@ export default function Philosophy() {
);
+
return (
@@ -60,23 +62,10 @@ export default function Philosophy() {
focus, performance, and wellbeing.
-
- <>>
{/* action section to get started now */}
-
-
- Ready to Focus?
- {"It's now or never."}
-
-
-
- Features
-
- {getStartedButton}
-
-
+
);
}
diff --git a/pages/pricing.tsx b/pages/pricing.tsx
index e298bf4..91657ad 100644
--- a/pages/pricing.tsx
+++ b/pages/pricing.tsx
@@ -6,6 +6,7 @@ import {
FaMoneyBill,
FaPhone,
} from "react-icons/fa";
+import LandingPageActionBar from "../components/demo/LandingPageActionBar";
import LandingPageLayout from "../components/Layouts/LandingPageLayout";
export default function Pricing() {
@@ -118,6 +119,8 @@ export default function Pricing() {
+
+
);
}