-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
679 changed files
with
5,473 additions
and
9,315 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,6 +32,7 @@ We felt the need for a CRM platform that empowers rather than constrains. We bel | |
|
||
# Demo | ||
Go to <a href="https://demo.twenty.com/">demo.twenty.com</a> and login with the following credentials: | ||
|
||
``` | ||
email: [email protected] | ||
password: Applecar2025 | ||
|
@@ -67,6 +68,7 @@ Below are some features we have implemented to date: | |
+ [Create tasks on records](#create-tasks-on-records) | ||
+ [Navigate quickly through the app using keyboard shortcuts and search](#navigate-quickly-through-the-app-using-keyboard-shortcuts-and-search) | ||
|
||
|
||
## Add, filter, sort, edit, and track customers: | ||
|
||
<p align="center"> | ||
|
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
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
29 changes: 29 additions & 0 deletions
29
packages/twenty-emails/src/emails/workflow-action.email.tsx
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,29 @@ | ||
import { BaseEmail } from 'src/components/BaseEmail'; | ||
import { Title } from 'src/components/Title'; | ||
import { CallToAction } from 'src/components/CallToAction'; | ||
|
||
type WorkflowActionEmailProps = { | ||
dangerousHTML?: string; | ||
title?: string; | ||
callToAction?: { | ||
value: string; | ||
href: string; | ||
}; | ||
}; | ||
export const WorkflowActionEmail = ({ | ||
dangerousHTML, | ||
title, | ||
callToAction, | ||
}: WorkflowActionEmailProps) => { | ||
return ( | ||
<BaseEmail> | ||
{title && <Title value={title} />} | ||
{dangerousHTML && ( | ||
<div dangerouslySetInnerHTML={{ __html: dangerousHTML }} /> | ||
)} | ||
{callToAction && ( | ||
<CallToAction value={callToAction.value} href={callToAction.href} /> | ||
)} | ||
</BaseEmail> | ||
); | ||
}; |
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
Oops, something went wrong.