|
1 | 1 | import { type FC } from 'react'; |
| 2 | +import { Link } from 'react-router-dom'; |
| 3 | +import { Layout } from '@oasisprotocol/ui-library/src/components/ui/layout'; |
| 4 | +import { Header } from '../../components/Layout/Header'; |
| 5 | +import { Footer } from '../../components/Layout/Footer'; |
| 6 | +import { Button } from '@oasisprotocol/ui-library/src/components/ui/button'; |
| 7 | +import { |
| 8 | + Card, |
| 9 | + CardHeader, |
| 10 | + CardTitle, |
| 11 | + CardContent, |
| 12 | + CardFooter, |
| 13 | +} from '@oasisprotocol/ui-library/src/components/ui/card'; |
| 14 | +import ElizaBg from './images/eliza.svg'; |
2 | 15 |
|
3 | 16 | export const Create: FC = () => { |
4 | | - return <>Create</>; |
| 17 | + return ( |
| 18 | + <div className="[&>*]:md:max-h-none [&>*]:md:h-auto"> |
| 19 | + <Layout headerContent={<Header />} footerContent={<Footer />}> |
| 20 | + <div className="max-w-6xl mx-auto px-8 py-12"> |
| 21 | + <div className="mb-8"> |
| 22 | + <h1 className="text-2xl font-white font-bold mb-2"> |
| 23 | + Start by Selecting a Template |
| 24 | + </h1> |
| 25 | + <p className="text-muted-foreground text-md max-w-md"> |
| 26 | + At varius sit sit netus at integer vitae posuere id. Nulla |
| 27 | + imperdiet vestibulum amet ultrices egestas. |
| 28 | + </p> |
| 29 | + </div> |
| 30 | + <div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6"> |
| 31 | + <Card className="rounded-md"> |
| 32 | + <div className="rounded-t-md bg-black -mt-6 flex items-center justify-center pb-2"> |
| 33 | + <img src={ElizaBg} alt="Eliza" /> |
| 34 | + </div> |
| 35 | + <CardHeader> |
| 36 | + <CardTitle className="text-white text-lg">elizaOS</CardTitle> |
| 37 | + </CardHeader> |
| 38 | + <CardContent className="space-y-4"> |
| 39 | + <span className="text-muted-foreground text-sm"> |
| 40 | + Multi-agent simulation framework designed for creating, |
| 41 | + deploying, and managing AI agents across different platforms. |
| 42 | + </span> |
| 43 | + </CardContent> |
| 44 | + <CardFooter> |
| 45 | + <Button className="w-full" asChild> |
| 46 | + <Link to="/">Select</Link> |
| 47 | + </Button> |
| 48 | + </CardFooter> |
| 49 | + </Card> |
| 50 | + <Card className="border-0 rounded-md"> |
| 51 | + <CardContent className="flex flex-col items-center justify-center h-full min-h-[300px] text-center space-y-2"> |
| 52 | + <span className="text-muted-foreground text-lg font-semibold"> |
| 53 | + New Templates soon |
| 54 | + </span> |
| 55 | + <span className="text-muted-foreground text-sm"> |
| 56 | + Quis id donec platea phasellus orci purus at. Sollicitudin |
| 57 | + lacus morbi est iaculis aliquam. |
| 58 | + </span> |
| 59 | + </CardContent> |
| 60 | + </Card> |
| 61 | + <Card className="border-0 rounded-md rounded-lg bg-gradient-to-r from-card to-transparent"></Card> |
| 62 | + </div> |
| 63 | + </div> |
| 64 | + </Layout> |
| 65 | + </div> |
| 66 | + ); |
5 | 67 | }; |
0 commit comments