diff --git a/apps/formbricks-com/components/home/GitHubSponsorship.tsx b/apps/formbricks-com/components/home/GitHubSponsorship.tsx
index d426a5ef09..c26ee3c187 100644
--- a/apps/formbricks-com/components/home/GitHubSponsorship.tsx
+++ b/apps/formbricks-com/components/home/GitHubSponsorship.tsx
@@ -23,10 +23,10 @@ export const GitHubSponsorship: React.FC = () => {
/>
- Sponsored by GitHub
+ Proudly Open-Source 🤍
- We're proud to join the first accelerator program by GitHub!{" "}
+ We're proud to to be supported by GitHubs Open-Source Program!{" "}
{
- Survey any segment. {" "}
-
- No coding required.
-
+ Create Products People Remember
- Survey granular user segments at any point in the user journey.
+ Understand what customers think & feel about your product.
- Gather up to 6x more insights with targeted micro-surveys.{" "}
- All open-source.
+ Continuously gather deep user insights,{" "}
+ all privacy-first.
diff --git a/apps/formbricks-com/components/shared/Footer.tsx b/apps/formbricks-com/components/shared/Footer.tsx
index b226f74dc0..081277a414 100644
--- a/apps/formbricks-com/components/shared/Footer.tsx
+++ b/apps/formbricks-com/components/shared/Footer.tsx
@@ -48,9 +48,7 @@ export default function Footer() {
Formbricks
-
- Make customer-centric decisions based on data.
-
+
Privacy-first Experience Management
© 2022. All rights reserved.
diff --git a/apps/formbricks-com/components/shared/Header.tsx b/apps/formbricks-com/components/shared/Header.tsx
index 0d630511e6..979440b7c5 100644
--- a/apps/formbricks-com/components/shared/Header.tsx
+++ b/apps/formbricks-com/components/shared/Header.tsx
@@ -269,9 +269,9 @@ export default function Header() {
*/}
- Community
+ Concierge
@@ -363,7 +363,7 @@ export default function Header() {
)}
-
Community
+
Concierge
Pricing
Docs
Blog
diff --git a/apps/formbricks-com/package.json b/apps/formbricks-com/package.json
index 3138815893..1b5e4b9eb4 100644
--- a/apps/formbricks-com/package.json
+++ b/apps/formbricks-com/package.json
@@ -11,10 +11,11 @@
"lint": "next lint"
},
"dependencies": {
+ "@calcom/embed-react": "^1.1.1",
"@docsearch/react": "^3.3.3",
- "@formbricks/ui": "workspace:*",
- "@formbricks/types": "workspace:*",
"@formbricks/lib": "workspace:*",
+ "@formbricks/types": "workspace:*",
+ "@formbricks/ui": "workspace:*",
"@headlessui/react": "^1.7.14",
"@heroicons/react": "^2.0.17",
"@mapbox/rehype-prism": "^0.8.0",
diff --git a/apps/formbricks-com/pages/concierge.tsx b/apps/formbricks-com/pages/concierge.tsx
new file mode 100644
index 0000000000..c91a9ac21f
--- /dev/null
+++ b/apps/formbricks-com/pages/concierge.tsx
@@ -0,0 +1,108 @@
+import HeroTitle from "@/components/shared/HeroTitle";
+import Layout from "@/components/shared/Layout";
+import Cal, { getCalApi } from "@calcom/embed-react";
+import { useEffect } from "react";
+import { CheckBadgeIcon } from "@heroicons/react/24/solid";
+
+const XMOffer = [
+ {
+ step: "1",
+ header: "Kick-off call",
+ description: "You share with our seasoned PMs which areas of your customer experience need improvement.",
+ },
+ {
+ step: "2",
+ header: "In-depth analysis",
+ description: "With a fresh pair of eyes, we analyze your customer experience to uncover potential.",
+ },
+ {
+ step: "3",
+ header: "Research design",
+ description: "We set up systems for continuous discovery. Benefit from an ongoing stream of insights.",
+ },
+ {
+ step: "4",
+ header: "Setup assistance",
+ description: "Our core developers help you get Formbricks up and running in no more than 60 minutes.",
+ },
+ {
+ step: "5",
+ header: "Actionable insights",
+ description:
+ "Once the results are in, we perform a thorough analysis and derive concrete Next Action Steps to retain your customers better.",
+ },
+];
+
+const ConciergePage = () => {
+ useEffect(() => {
+ (async function () {
+ const cal = await getCalApi();
+ cal("ui", {
+ theme: "light",
+ styles: { branding: { brandColor: "#000000" } },
+ hideEventTypeDetails: false,
+ });
+ })();
+ }, []);
+
+ return (
+
+
+
+
+ {XMOffer.map((offer) => (
+
+
+ {offer.step}
+
+
+
{offer.header}
+
{offer.description}
+
+
+ ))}
+
+
$2.990
+
+
$990
+
+ 24h GitHub Demo Offer 🔥
+
+
+
+
+
+
+ 100% Risk-free: Pay after the kick-off call.
+
+
+
+ Money-back: If you're not happy, get a full refund.
+
+
+
+
+
+
+
+
+ );
+};
+
+export default ConciergePage;
diff --git a/apps/formbricks-com/pages/index.tsx b/apps/formbricks-com/pages/index.tsx
index 418d831b0c..49824b0327 100644
--- a/apps/formbricks-com/pages/index.tsx
+++ b/apps/formbricks-com/pages/index.tsx
@@ -10,7 +10,7 @@ import BestPractices from "@/components/shared/BestPractices";
const IndexPage = () => (
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 1068108622..6bf87ddd2e 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -18,7 +18,7 @@ importers:
version: 3.12.6
turbo:
specifier: latest
- version: 1.10.3
+ version: 1.10.6
apps/demo:
dependencies:
@@ -77,6 +77,9 @@ importers:
apps/formbricks-com:
dependencies:
+ '@calcom/embed-react':
+ specifier: ^1.1.1
+ version: 1.1.1(react-dom@18.2.0)(react@18.2.0)
'@docsearch/react':
specifier: ^3.3.3
version: 3.3.3(@algolia/client-search@4.14.2)(@types/react@18.0.35)(react-dom@18.2.0)(react@18.2.0)
@@ -2256,6 +2259,28 @@ packages:
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
dev: true
+ /@calcom/embed-core@1.2.1:
+ resolution: {integrity: sha512-KDL1gjWiixDmaLRT/Ps7Y2MgXfe1NPkVr9UG/VkkJnIVxBz8M0tLBdGTRZpLzwVpsN7VsK/Wb1p9dZ8SYTKitw==}
+ dev: false
+
+ /@calcom/embed-react@1.1.1(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-K27CYyrHKzkc7kWNhLnrZPh0+uJy2VAab9Z8e6jKylYNWBraiAb9zyx8hOFcAMpHHOHXb1XBN76HLm3Ug7Js3A==}
+ peerDependencies:
+ react: ^18.2.0
+ react-dom: ^18.2.0
+ dependencies:
+ '@calcom/embed-core': 1.2.1
+ '@calcom/embed-snippet': 1.0.9
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ dev: false
+
+ /@calcom/embed-snippet@1.0.9:
+ resolution: {integrity: sha512-x8/RZxYUQ3uPZButjHWiZ5Kz00+Y9v+NK2XEklnKC2JslDEzRU+KV/g8Lk5aF/xweHSioKwVLa5xBmrfR9deKg==}
+ dependencies:
+ '@calcom/embed-core': 1.2.1
+ dev: false
+
/@changesets/apply-release-plan@6.1.3:
resolution: {integrity: sha512-ECDNeoc3nfeAe1jqJb5aFQX7CqzQhD2klXRez2JDb/aVpGUbX673HgKrnrgJRuQR/9f2TtLoYIzrGB9qwD77mg==}
dependencies:
@@ -5776,7 +5801,7 @@ packages:
tailwindcss: '>=3.0.0 || >= 3.0.0-alpha.1'
dependencies:
mini-svg-data-uri: 1.4.4
- tailwindcss: 3.3.1(postcss@8.4.21)
+ tailwindcss: 3.3.1(postcss@8.4.22)
dev: true
/@tailwindcss/forms@0.5.3(tailwindcss@3.3.2):
@@ -20614,65 +20639,65 @@ packages:
dependencies:
safe-buffer: 5.2.1
- /turbo-darwin-64@1.10.3:
- resolution: {integrity: sha512-IIB9IomJGyD3EdpSscm7Ip1xVWtYb7D0x7oH3vad3gjFcjHJzDz9xZ/iw/qItFEW+wGFcLSRPd+1BNnuLM8AsA==}
+ /turbo-darwin-64@1.10.6:
+ resolution: {integrity: sha512-s2Gc7i9Ud+H9GDcrGJjPIyscJfzDGQ6il4Sl2snfvwngJs4/TaqKuBoX3HNt/7F4NiFRs7ZhlLV1/Yu9zGBRhw==}
cpu: [x64]
os: [darwin]
requiresBuild: true
dev: true
optional: true
- /turbo-darwin-arm64@1.10.3:
- resolution: {integrity: sha512-SBNmOZU9YEB0eyNIxeeQ+Wi0Ufd+nprEVp41rgUSRXEIpXjsDjyBnKnF+sQQj3+FLb4yyi/yZQckB+55qXWEsw==}
+ /turbo-darwin-arm64@1.10.6:
+ resolution: {integrity: sha512-tgl70t5PBLyRcNTdP9N6NjvdvQ5LUk8Z60JGUhBhnc+oCOdA4pltrDJNPyel3tQAXXt1dDpl8pp9vUrbwoVyGg==}
cpu: [arm64]
os: [darwin]
requiresBuild: true
dev: true
optional: true
- /turbo-linux-64@1.10.3:
- resolution: {integrity: sha512-kvAisGKE7xHJdyMxZLvg53zvHxjqPK1UVj4757PQqtx9dnjYHSc8epmivE6niPgDHon5YqImzArCjVZJYpIGHQ==}
+ /turbo-linux-64@1.10.6:
+ resolution: {integrity: sha512-h7eyAA3xtAVpamcYJYUwe0xm0LWdbv7/I7QiM09AZ67TTNpyUgqW8giFN3h793BHEQ2Rcnk9FNkpIbjWBbyamg==}
cpu: [x64]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /turbo-linux-arm64@1.10.3:
- resolution: {integrity: sha512-Qgaqln0IYRgyL0SowJOi+PNxejv1I2xhzXOI+D+z4YHbgSx87ox1IsALYBlK8VRVYY8VCXl+PN12r1ioV09j7A==}
+ /turbo-linux-arm64@1.10.6:
+ resolution: {integrity: sha512-8cZhOeLqu3QZ27yLd6bw4FNaB8y5pLdWeRLJeiWHkIb/cptKnRKJFP+keBJzJi8ovaMqdBpabrxiBRN2lhau5Q==}
cpu: [arm64]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /turbo-windows-64@1.10.3:
- resolution: {integrity: sha512-rbH9wManURNN8mBnN/ZdkpUuTvyVVEMiUwFUX4GVE5qmV15iHtZfDLUSGGCP2UFBazHcpNHG1OJzgc55GFFrUw==}
+ /turbo-windows-64@1.10.6:
+ resolution: {integrity: sha512-qx5jcfCJodN1Mh0KtSVQau7pK8CxDvtif7+joPHI2HbQPAADgdUl0LHfA5tFHh6aWgfvhxbvIXqJd6v7Mqkj9g==}
cpu: [x64]
os: [win32]
requiresBuild: true
dev: true
optional: true
- /turbo-windows-arm64@1.10.3:
- resolution: {integrity: sha512-ThlkqxhcGZX39CaTjsHqJnqVe+WImjX13pmjnpChz6q5HHbeRxaJSFzgrHIOt0sUUVx90W/WrNRyoIt/aafniw==}
+ /turbo-windows-arm64@1.10.6:
+ resolution: {integrity: sha512-vTQaRG3/s2XTreOBr6J9HKFtjzusvwGQg0GtuW2+9Z7fizdzP8MuhaDbN6FhKHcWC81PQPD61TBIKTVTsYOEZg==}
cpu: [arm64]
os: [win32]
requiresBuild: true
dev: true
optional: true
- /turbo@1.10.3:
- resolution: {integrity: sha512-U4gKCWcKgLcCjQd4Pl8KJdfEKumpyWbzRu75A6FCj6Ctea1PIm58W6Ltw1QXKqHrl2pF9e1raAskf/h6dlrPCA==}
+ /turbo@1.10.6:
+ resolution: {integrity: sha512-0/wbjw4HvmPP1abVWHTdeFRfCA9cn5oxCPP5bDixagLzvDgGWE3xfdlsyGmq779Ekr9vjtDPgC2Y4JlXEhyryw==}
hasBin: true
requiresBuild: true
optionalDependencies:
- turbo-darwin-64: 1.10.3
- turbo-darwin-arm64: 1.10.3
- turbo-linux-64: 1.10.3
- turbo-linux-arm64: 1.10.3
- turbo-windows-64: 1.10.3
- turbo-windows-arm64: 1.10.3
+ turbo-darwin-64: 1.10.6
+ turbo-darwin-arm64: 1.10.6
+ turbo-linux-64: 1.10.6
+ turbo-linux-arm64: 1.10.6
+ turbo-windows-64: 1.10.6
+ turbo-windows-arm64: 1.10.6
dev: true
/tween-functions@1.2.0: