Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions apps/www/app/glossary/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -175,9 +175,6 @@ const GlossaryTermWrapper = async ({ params }: { params: { slug: string } }) =>
<h1 className="not-prose blog-heading-gradient text-left font-medium tracking-tight text-4xl">
{term.h1}
</h1>
<p className="mt-8 text-lg font-medium leading-8 not-prose text-white/60 lg:text-xl">
{term.intro}
</p>
</div>
<div className="mt-12 sm:mx-6">
<Takeaways takeaways={term.takeaways} term={term.term} />
Expand Down
1 change: 0 additions & 1 deletion apps/www/content-collections.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ const glossary = defineCollection({
schema: (z) => ({
title: z.string(),
description: z.string(),
intro: z.string(),
h1: z.string(),
term: z.string(),
categories: z.array(categoryEnum),
Expand Down
1 change: 0 additions & 1 deletion apps/www/content/glossary/mime-types.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ title: "MIME Types Explained"
description: "Learn about MIME types in API development. Understand their role in defining file formats like images and PDFs. Explore our glossary for more insights."
term: "MIME Types"
h1: "What are MIME Types? Format IDs Explained"
intro: "MIME types are essential identifiers in digital communication, specifying the nature and format of data. They play a crucial role in web development and API interactions, ensuring that information is correctly interpreted and displayed across various platforms and applications."
categories: ["api-specification"]
takeaways:
tldr: "Crucial identifiers in digital communication, especially APIs. They specify data format, ensuring correct interpretation and interoperability."
Expand Down