-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
1 parent
7278319
commit fe8ff63
Showing
17 changed files
with
145 additions
and
206 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
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,6 @@ | ||
import {clsx, type ClassValue} from 'clsx'; | ||
import {twMerge} from 'tailwind-merge'; | ||
|
||
export function cn(...inputs: ClassValue[]) { | ||
return twMerge(clsx(inputs)); | ||
} |
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
21 changes: 12 additions & 9 deletions
21
packages/promo-pages/src/components/homepage/WriteInReact.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 |
---|---|---|
@@ -1,30 +1,33 @@ | ||
import React from 'react'; | ||
import {GetStarted} from './GetStartedStrip'; | ||
import styles from './writeinreact.module.css'; | ||
|
||
export const WriteInReact: React.FC = () => { | ||
return ( | ||
<div> | ||
<h1 className={styles.writeincsstitle}>Make videos programmatically.</h1> | ||
<br /> | ||
<h1 | ||
className="text-5xl lg:text-[5em] text-center font-brand font-black leading-none " | ||
style={{ | ||
textShadow: '0 5px 30px var(--background)', | ||
}} | ||
> | ||
Make videos programmatically. | ||
</h1> | ||
<p | ||
style={{ | ||
textAlign: 'center', | ||
fontSize: '1.2em', | ||
fontWeight: 500, | ||
textShadow: '0 5px 30px var(--background)', | ||
}} | ||
className={styles.text} | ||
className="font-medium text-center text-lg" | ||
> | ||
Create real MP4 videos with React. <br /> | ||
Parametrize content, render server-side and build applications. | ||
</p> | ||
<br /> | ||
<div className={styles.writeincss}> | ||
<div> | ||
<GetStarted /> | ||
</div> | ||
<br /> | ||
<br /> | ||
<div>{/* <ChooseTemplate /> */}</div> | ||
{/* <ChooseTemplate /> */} | ||
</div> | ||
); | ||
}; |
62 changes: 0 additions & 62 deletions
62
packages/promo-pages/src/components/homepage/get-started.module.css
This file was deleted.
Oops, something went wrong.
22 changes: 0 additions & 22 deletions
22
packages/promo-pages/src/components/homepage/github.module.css
This file was deleted.
Oops, something went wrong.
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.