Skip to content
This repository was archived by the owner on Jul 4, 2025. It is now read-only.

Commit 2149180

Browse files
author
Gabrielle Ong
authored
Merge branch 'dev' into docs-readme
2 parents 4d82faf + 75cf152 commit 2149180

File tree

4 files changed

+30
-19
lines changed

4 files changed

+30
-19
lines changed

docs/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
"@docusaurus/theme-live-codeblock": "^3.5.2",
2727
"@docusaurus/theme-mermaid": "^3.5.2",
2828
"@excalidraw/excalidraw": "^0.17.6",
29+
"@fillout/react": "^1.1.2",
2930
"@huggingface/hub": "^0.15.1",
3031
"@mdx-js/react": "3.0.1",
3132
"@radix-ui/react-select": "^2.1.1",
Lines changed: 23 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,23 @@
1-
import Cal, { getCalApi } from "@calcom/embed-react";
2-
import { useEffect } from "react";
3-
export default function MyApp() {
4-
useEffect(()=>{
5-
(async function () {
6-
const cal = await getCalApi({"namespace":"cortex"});
7-
cal("ui", {"styles":{"branding":{"brandColor":"#000000"}},"hideEventTypeDetails":false,"layout":"month_view"});
8-
})();
9-
}, [])
10-
return <Cal namespace="cortex"
11-
calLink="team/homebrew/cortex"
12-
style={{width:"100%",height:"100%",overflow:"scroll"}}
13-
config={{"layout":"month_view"}}
14-
15-
16-
/>;
17-
};
18-
1+
import React from "react";
2+
3+
import { FilloutStandardEmbed } from "@fillout/react";
4+
import "@fillout/react/style.css";
5+
6+
const PartnerForm = () => {
7+
return (
8+
<div className="my-20 h-[1100px]">
9+
<div
10+
style={{
11+
width: "100%",
12+
height: "100%",
13+
}}
14+
>
15+
<FilloutStandardEmbed filloutId="38SqPFJU2tus" />
16+
</div>
17+
</div>
18+
);
19+
};
20+
21+
export default PartnerForm;
22+
23+

docs/src/containers/Homepage/SimpleHeroSection/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const SimpleHeroSection = () => {
2929
<div className="mt-8 flex gap-8 justify-center items-center">
3030
<DropdownDownload lastRelease={latestRelease} />
3131
<Link href="/contact" target="_blank">
32-
<Button theme="secondary">Schedule a Call</Button>
32+
<Button theme="secondary">Get in Touch</Button>
3333
</Link>
3434
</div>
3535
</div>

docs/yarn.lock

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2061,6 +2061,11 @@
20612061
resolved "https://registry.yarnpkg.com/@excalidraw/excalidraw/-/excalidraw-0.17.6.tgz#5fd208ce69d33ca712d1804b50d7d06d5c46ac4d"
20622062
integrity sha512-fyCl+zG/Z5yhHDh5Fq2ZGmphcrALmuOdtITm8gN4d8w4ntnaopTXcTfnAAaU3VleDC6LhTkoLOTG6P5kgREiIg==
20632063

2064+
"@fillout/react@^1.1.2":
2065+
version "1.1.2"
2066+
resolved "https://registry.yarnpkg.com/@fillout/react/-/react-1.1.2.tgz#833c28aa53aa79a712b61e915e3fc710312f02f9"
2067+
integrity sha512-XyzLY74Zhxxwym3A9770Tb3NINwaaWyWwvaw1lMJ5sA/P6hgsdzvefUOqohzR3+KVyspvBOR4BoR0nBMPFd/Vw==
2068+
20642069
"@floating-ui/core@^1.0.0":
20652070
version "1.6.2"
20662071
resolved "https://registry.yarnpkg.com/@floating-ui/core/-/core-1.6.2.tgz#d37f3e0ac1f1c756c7de45db13303a266226851a"

0 commit comments

Comments
 (0)