Skip to content

Commit cf4377c

Browse files
committed
card fix
1 parent 0dc2f81 commit cf4377c

File tree

1 file changed

+19
-44
lines changed

1 file changed

+19
-44
lines changed

fern/pages/home.mdx

+19-44
Original file line numberDiff line numberDiff line change
@@ -186,20 +186,11 @@ twitter:description: "Build with our leading Speech AI models"
186186
border-color: #171c29;
187187
}
188188
189-
:is(.dark) body#fern-docs .product-card .fern-card .w-full.space-y-1.overflow-hidden div:last-child {
190-
background-color: #0d101a !important;
191-
border-color: #171c29 !important;
192-
}
193-
194189
:is(.dark) .product-card .fern-card .t-muted p {
195190
background-color: #0d101a;
196191
197192
}
198193
199-
:is(.dark) body#fern-docs .product-card .fern-card .w-full.space-y-1.overflow-hidden div:last-child p {
200-
background-color: #0d101a;
201-
}
202-
203194
:is(.dark) .product-card .fern-card .text-base {
204195
color: white;
205196
}
@@ -219,19 +210,6 @@ twitter:description: "Build with our leading Speech AI models"
219210
border-bottom-width: 0px;
220211
height: 100% !important;
221212
margin-top: 10px !important;
222-
height: 85% !important;
223-
}
224-
225-
body#fern-docs .product-card .fern-card .w-full.space-y-1.overflow-hidden div:last-child {
226-
background-color: #BEC2EE !important;
227-
border: 8px solid #BEC2EE !important;
228-
border-radius: 12px !important;
229-
border-bottom-left-radius: 0px !important;
230-
border-bottom-right-radius: 0px !important;
231-
border-bottom-width: 0px !important;
232-
height: 100% !important;
233-
margin-top: 10px !important;
234-
height: 85% !important;
235213
}
236214
237215
.product-card .fern-card .t-muted p {
@@ -247,19 +225,6 @@ twitter:description: "Build with our leading Speech AI models"
247225
height: 100% !important;
248226
}
249227
250-
body#fern-docs .product-card .fern-card .w-full.space-y-1.overflow-hidden div:last-child {
251-
color: white !important;
252-
background-color: #747FDB !important;
253-
border-radius: 10px !important;
254-
border-bottom-left-radius: 0px !important;
255-
border-bottom-right-radius: 0px !important;
256-
padding-left: 16px !important;
257-
padding-right: 16px !important;
258-
padding-top: 12px !important;
259-
padding-bottom: 12px !important;
260-
height: 100% !important;
261-
}
262-
263228
.product-card .fern-card .w-full.space-y-1.overflow-hidden {
264229
margin-top: 10px !important;
265230
display: flex;
@@ -290,10 +255,6 @@ twitter:description: "Build with our leading Speech AI models"
290255
color: rgba(var(--body-text),var(--tw-text-opacity,1) !important;
291256
}
292257
293-
body#fern-docs .gradient-card .fern-card .w-full.space-y-1.overflow-hidden div:last-child {
294-
color: rgba(var(--body-text),var(--tw-text-opacity,1) !important;
295-
}
296-
297258
:is(.dark) .sdk-card .fern-card {
298259
background-color: #2A2522;
299260
}
@@ -395,19 +356,27 @@ twitter:description: "Build with our leading Speech AI models"
395356
<CardGroup cols={2}>
396357
<Card title="Transcribe an audio file" href="/docs/getting-started/transcribe-an-audio-file">
397358
<div class="bg-noise"></div>
398-
Learn how to transcribe audio files with our SDK
359+
<div class="t-muted">
360+
Learn how to transcribe audio files with our SDK
361+
</div>
399362
</Card>
400363
<Card title="Transcribe streaming audio" href="/docs/getting-started/transcribe-streaming-audio-from-a-microphone/python">
401364
<div class="bg-noise"></div>
402-
Learn how to transcribe live audio from a microphone
365+
<div class="t-muted">
366+
Learn how to transcribe live audio from a microphone
367+
</div>
403368
</Card>
404369
<Card title="Apply LLMs to audio" href="/docs/lemur/apply-llms-to-audio-files">
405370
<div class="bg-noise"></div>
406-
Learn how to analyze audio content with LLMs
371+
<div class="t-muted">
372+
Learn how to analyze audio content with LLMs
373+
</div>
407374
</Card>
408375
<Card title="Cookbooks" href="/docs/guides">
409376
<div class="bg-noise"></div>
410-
Get started quickly with our use-case specific cookbooks
377+
<div class="t-muted">
378+
Get started quickly with our use-case specific cookbooks
379+
</div>
411380
</Card>
412381
</CardGroup>
413382
</div>
@@ -421,23 +390,29 @@ twitter:description: "Build with our leading Speech AI models"
421390
href="/docs/speech-to-text/pre-recorded-audio"
422391
>
423392
<div class="bg-noise"></div>
424-
Models for converting audio files, video files, and live speech into text.
393+
<div class="t-muted">
394+
Models for converting audio files, video files, and live speech into text.
395+
</div>
425396
</Card>
426397
<Card
427398
title="LeMUR"
428399
icon={<img src="https://fern-image-hosting.s3.us-east-1.amazonaws.com/assemblyai/1442.svg" />}
429400
href="/docs/lemur/apply-llms-to-audio-files"
430401
>
431402
<div class="bg-noise"></div>
403+
<div class="t-muted">
432404
LeMUR is a framework for applying Large Language Models (LLMs) to spoken data.
405+
</div>
433406
</Card>
434407
<Card
435408
title="Audio Intelligence"
436409
icon={<img src="https://fern-image-hosting.s3.us-east-1.amazonaws.com/assemblyai/1443.svg" />}
437410
href="/docs/audio-intelligence/summarization"
438411
>
439412
<div class="bg-noise"></div>
413+
<div class="t-muted">
440414
Models for interpreting audio for business and personal workflows.
415+
</div>
441416
</Card>
442417
</CardGroup>
443418
</div>

0 commit comments

Comments
 (0)