-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
8 changed files
with
139 additions
and
54 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
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,40 @@ | ||
import * as React from 'react'; | ||
|
||
import { Button, Card, CardContent, Grid, Typography } from '@mui/joy'; | ||
import AccessTimeIcon from '@mui/icons-material/AccessTime'; | ||
import LaunchIcon from '@mui/icons-material/Launch'; | ||
|
||
import { Link } from '~/common/components/Link'; | ||
|
||
|
||
const bigAgi2SurveyUrl = 'https://y2rjg0zillz.typeform.com/to/FDggwwZv?utm_source=github&utm_medium=callout&utm_campaign=ba20'; | ||
|
||
export const bigAgi2NewsCallout = | ||
<Card variant='solid' invertedColors> | ||
<CardContent sx={{ gap: 2 }}> | ||
<Typography level='title-lg'> | ||
Big-AGI 2.0 - In Development | ||
</Typography> | ||
<Typography level='body-sm'> | ||
We're building the next version of Big-AGI with your needs in mind. New features, better performance, enhanced AI interactions. Help us shape it. | ||
</Typography> | ||
<Grid container spacing={1}> | ||
<Grid xs={12} sm={7}> | ||
<Button | ||
fullWidth variant='soft' color='primary' endDecorator={<LaunchIcon />} | ||
component={Link} href={bigAgi2SurveyUrl} noLinkStyle target='_blank' | ||
> | ||
Apply for Early Access | ||
</Button> | ||
</Grid> | ||
<Grid xs={12} sm={5} sx={{ display: 'flex', flexAlign: 'center', justifyContent: 'center' }}> | ||
<Button | ||
fullWidth variant='outlined' color='primary' startDecorator={<AccessTimeIcon />} | ||
disabled | ||
> | ||
Coming Fall 2024 | ||
</Button> | ||
</Grid> | ||
</Grid> | ||
</CardContent> | ||
</Card>; |
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