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

Commit 58247a0

Browse files
eckartaleckartal
authored andcommitted
new: cortex enterprise page and form
1 parent 113ea98 commit 58247a0

File tree

4 files changed

+281
-207
lines changed

4 files changed

+281
-207
lines changed

docs/package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,14 @@
1717
"typecheck": "tsc"
1818
},
1919
"dependencies": {
20+
"@calcom/embed-react": "^1.5.1",
2021
"@code-hike/mdx": "^0.9.0",
2122
"@docsearch/js": "^3.6.0",
2223
"@docsearch/react": "^3.6.0",
23-
"@docusaurus/core": "3.4.0",
24-
"@docusaurus/preset-classic": "^3.4.0",
25-
"@docusaurus/theme-live-codeblock": "^3.4.0",
26-
"@docusaurus/theme-mermaid": "^3.4.0",
24+
"@docusaurus/core": "^3.5.2",
25+
"@docusaurus/preset-classic": "^3.5.2",
26+
"@docusaurus/theme-live-codeblock": "^3.5.2",
27+
"@docusaurus/theme-mermaid": "^3.5.2",
2728
"@excalidraw/excalidraw": "^0.17.6",
2829
"@huggingface/hub": "^0.15.1",
2930
"@mdx-js/react": "3.0.1",
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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+

docs/src/pages/contact.mdx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: "Cortex Enterprise"
3+
description: "Cortex lets you run AI models locally on your device or server, enabling you to own your AI. For enterprise usage purposes, schedule a call with us here."
4+
---
5+
6+
import PartnerForm from '@site/src/components/PartnerForm';
7+
8+
<PartnerForm />

0 commit comments

Comments
 (0)