-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1558 from janhq/feature/cortex-enterprise
Feature/cortex enterprise
- Loading branch information
Showing
7 changed files
with
296 additions
and
222 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import Cal, { getCalApi } from "@calcom/embed-react"; | ||
import { useEffect } from "react"; | ||
export default function MyApp() { | ||
useEffect(()=>{ | ||
(async function () { | ||
const cal = await getCalApi({"namespace":"cortex"}); | ||
cal("ui", {"styles":{"branding":{"brandColor":"#000000"}},"hideEventTypeDetails":false,"layout":"month_view"}); | ||
})(); | ||
}, []) | ||
return <Cal namespace="cortex" | ||
calLink="team/homebrew/cortex" | ||
style={{width:"100%",height:"100%",overflow:"scroll"}} | ||
config={{"layout":"month_view"}} | ||
|
||
|
||
/>; | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
title: "Cortex Enterprise" | ||
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." | ||
--- | ||
|
||
import PartnerForm from '@site/src/components/PartnerForm'; | ||
|
||
<PartnerForm /> |
Oops, something went wrong.