diff --git a/components/Layouts/LandingPageLayout.tsx b/components/Layouts/LandingPageLayout.tsx
index c42ca23..c2f662e 100644
--- a/components/Layouts/LandingPageLayout.tsx
+++ b/components/Layouts/LandingPageLayout.tsx
@@ -6,7 +6,7 @@ import { useAuth } from "../../contexts/authContext";
import MainLogo from "../MainLogo";
enum LandingPageNavigation {
- home = "/",
+ product = "/",
features = "/features",
pricing = "/pricing",
philosophy = "/philosophy",
@@ -41,20 +41,22 @@ export default function LangingPageLayout({ children }) {
return (
-
+
{/* header */}
window.open(LandingPageNavigation.home, "_self")}
+ onClick={() =>
+ window.open(LandingPageNavigation.product, "_self")
+ }
className={`text-gray-500 hover:text-teal-600 hover:cursor-pointer ${
- currPage == LandingPageNavigation.home
+ currPage == LandingPageNavigation.product
? "text-teal-600 underline underline-offset-4"
: ""
}`}
>
- Home
+ Product
diff --git a/pages/pricing.tsx b/pages/pricing.tsx
index 8f8da6b..ded06bc 100644
--- a/pages/pricing.tsx
+++ b/pages/pricing.tsx
@@ -1,14 +1,121 @@
-import LangingPageLayout from "../components/Layouts/LandingPageLayout";
+import { Divider } from "antd";
+import Link from "next/link";
+import {
+ FaAngleRight,
+ FaArrowRight,
+ FaMoneyBill,
+ FaPhone,
+} from "react-icons/fa";
+import LandingPageLayout from "../components/Layouts/LandingPageLayout";
export default function Pricing() {
return (
-
-
-
- Your WFH Hub
- Actively working on new and exciting features.
+
+
+ PRICING
+ Get Started Now,
+
+ Pay for Spots Later.
+
+
+ Hit the ground running with{" "}
+ 2 free spots on sign up.
+
+
+
+ No credit card required
+
+
+
+ Features
+
+
-
+
+
+ {/* lite pricing */}
+
+
+ Lite
+
+ FREE
+
+
+
+ Hit the ground running.
+
+
+
+ Valid for 30 days.
+
+
+
+ {/* startups pricing */}
+
+
+ Startups
+
+ POPULAR
+
+
+
+
+ Pay per spot per month based on your needs.
+
+
+
+
+ 30 day
+ money back guarantee.
+
+
+
+ {/* business pricing */}
+
+
+ Business
+
+
+
+ Pay for enterprise-level features for your large-scale organization.
+
+
+
+
+ 30 day
+ money back guarantee.
+
+
+
+
);
}