diff --git a/public/images/discussions.png b/public/images/discussions.png
new file mode 100644
index 0000000..14b681d
Binary files /dev/null and b/public/images/discussions.png differ
diff --git a/public/images/pull-requests.png b/public/images/pull-requests.png
new file mode 100644
index 0000000..b6698f6
Binary files /dev/null and b/public/images/pull-requests.png differ
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 7b02955..3e75f0f 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -10,6 +10,7 @@ import Timeline from "../components/Timeline";
import Customize from "../components/Customize";
import { useMediaQuery } from "@mantine/hooks";
import { OrgTestimonials } from "../components/OrgTestimonials";
+import { WhatsFlitchPay } from "../components/WhatsFlitchPay";
export default function LandingPage() {
return (
@@ -18,6 +19,7 @@ export default function LandingPage() {
{/* {!isMobile ? : null} */}
+
{/*
*/}
diff --git a/src/components/WhatsFlitchPay.tsx b/src/components/WhatsFlitchPay.tsx
new file mode 100644
index 0000000..39882aa
--- /dev/null
+++ b/src/components/WhatsFlitchPay.tsx
@@ -0,0 +1,89 @@
+import { buttonVariants } from "@/components/ui/button";
+import { Icons } from "@/lib/icons";
+import { cn } from "@/lib/utils";
+import { FeaturesStar } from "@/public/svgs/FeaturesStar";
+import { VectorRight } from "@/public/svgs/VectorRight";
+import Link from "next/link";
+import discussion from "@/public/images/discussions.png";
+import pullRequests from "@/public/images/pull-requests.png";
+import React from "react";
+import Image from "next/image";
+
+export function WhatsFlitchPay() {
+ return (
+
+
+
+
+
+
+
+ Sophisticated Checkouts
+
+ {" "}
+ create space to ask questions and have open-ended
+ conversations.
+
+
+
+
+ Enable GitHub Discussion {"->"}
+ {/* Right Arrow */}
+ Enable Github Discussions
+
+
+
+
+
+
+
+
+
+
+ On Make products & Sell
+
+ {" "}
+ allow communication and collaboration about code changes.
+
+
+
+
+ Check out pull requests {"->"}
+ {/* Right Arrow */}
+ Check out pull requests
+
+
+
+
+
+
+
+
+
+
+ );
+}
+
+function HeadComponent() {
+ return (
+
+ );
+}