|
1 | | -import GeneratedImage from "@/components/GeneratedImage"; |
| 1 | +import CardGrid from "@/components/CardGrid"; |
| 2 | +import ContentNav from "@/components/ContentNav/ContentNav"; |
| 3 | +import ErrorBanner from "@/components/ErrorBanner"; |
| 4 | +import Switchback from "@/components/Switchback"; |
2 | 5 |
|
3 | 6 | export default function Home() { |
4 | 7 | return ( |
5 | | - <main className="container"> |
6 | | - <div className="hero"> |
7 | | - <h1> |
8 | | - Create your own <span>watercolor masterpiece</span> |
9 | | - </h1> |
10 | | - </div> |
11 | | - |
12 | | - <GeneratedImage /> |
| 8 | + <main className="container wide"> |
| 9 | + <ContentNav |
| 10 | + prevText="Jan 24, 2023" |
| 11 | + current="January 25, 2023" |
| 12 | + nextText="Jan 26, 2023" |
| 13 | + /> |
| 14 | + <CardGrid |
| 15 | + heading={ |
| 16 | + <h1> |
| 17 | + 10 Most <br /> |
| 18 | + <span>Popular</span> Models |
| 19 | + </h1> |
| 20 | + } |
| 21 | + cards={[ |
| 22 | + { |
| 23 | + icon: "/models/mistral.webp", |
| 24 | + modelAuthor: "stabilityai", |
| 25 | + modelName: "japanese-stablelm-instruct-alpha-7b", |
| 26 | + externalLink: "https://huggingface.co/mistralai/Mistral-7B-v0.1", |
| 27 | + }, |
| 28 | + { |
| 29 | + icon: "/models/mistral.webp", |
| 30 | + modelAuthor: "mistralai", |
| 31 | + modelName: "Mistral-7B-v0.1", |
| 32 | + externalLink: "https://huggingface.co/mistralai/Mistral-7B-v0.1", |
| 33 | + }, |
| 34 | + { |
| 35 | + icon: "/models/mistral.webp", |
| 36 | + modelAuthor: "mistralai", |
| 37 | + modelName: "Mistral-7B-v0.1", |
| 38 | + externalLink: "https://huggingface.co/mistralai/Mistral-7B-v0.1", |
| 39 | + }, |
| 40 | + { |
| 41 | + icon: "/models/mistral.webp", |
| 42 | + modelAuthor: "mistralai", |
| 43 | + modelName: "Mistral-7B-v0.1", |
| 44 | + externalLink: "https://huggingface.co/mistralai/Mistral-7B-v0.1", |
| 45 | + }, |
| 46 | + { |
| 47 | + icon: "/models/mistral.webp", |
| 48 | + modelAuthor: "mistralai", |
| 49 | + modelName: "Mistral-7B-v0.1", |
| 50 | + externalLink: "https://huggingface.co/mistralai/Mistral-7B-v0.1", |
| 51 | + }, |
| 52 | + { |
| 53 | + icon: "/models/mistral.webp", |
| 54 | + modelAuthor: "mistralai", |
| 55 | + modelName: "Mistral-7B-v0.1", |
| 56 | + externalLink: "https://huggingface.co/mistralai/Mistral-7B-v0.1", |
| 57 | + }, |
| 58 | + { |
| 59 | + icon: "/models/mistral.webp", |
| 60 | + modelAuthor: "mistralai", |
| 61 | + modelName: "Mistral-7B-v0.1", |
| 62 | + externalLink: "https://huggingface.co/mistralai/Mistral-7B-v0.1", |
| 63 | + }, |
| 64 | + { |
| 65 | + icon: "/models/mistral.webp", |
| 66 | + modelAuthor: "mistralai", |
| 67 | + modelName: "Mistral-7B-v0.1", |
| 68 | + externalLink: "https://huggingface.co/mistralai/Mistral-7B-v0.1", |
| 69 | + }, |
| 70 | + { |
| 71 | + icon: "/models/mistral.webp", |
| 72 | + modelAuthor: "mistralai", |
| 73 | + modelName: "Mistral-7B-v0.1", |
| 74 | + externalLink: "https://huggingface.co/mistralai/Mistral-7B-v0.1", |
| 75 | + }, |
| 76 | + { |
| 77 | + icon: "/models/mistral.webp", |
| 78 | + modelAuthor: "mistralai", |
| 79 | + modelName: "Mistral-7B-v0.1", |
| 80 | + externalLink: "https://huggingface.co/mistralai/Mistral-7B-v0.1", |
| 81 | + }, |
| 82 | + ]} |
| 83 | + /> |
| 84 | + <Switchback |
| 85 | + leftContent={ |
| 86 | + <h2 className="heading"> |
| 87 | + <span>45,515</span> text gen |
| 88 | + <br /> models existed |
| 89 | + </h2> |
| 90 | + } |
| 91 | + rightContent={ |
| 92 | + <p> |
| 93 | + We like to say that in AI, a week is a month and a month is a year, |
| 94 | + and the "latest and greatest model" changes just as quickly. We |
| 95 | + tracked the most popular text-gen models starting in January 2023 to |
| 96 | + highlight the rapid rate of change in the AI industry. Click through |
| 97 | + time to see how quickly the state-of-the-art changes. |
| 98 | + </p> |
| 99 | + } |
| 100 | + /> |
13 | 101 | </main> |
14 | 102 | ); |
15 | 103 | } |
0 commit comments