Skip to content
Closed
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
4 changes: 2 additions & 2 deletions app/docs/reference/[type]/[category]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ export default async function CommandReferencePage({ params }: { params: Promise
<article>
<Breadcrumb type={type} category={category} />
<div className="mb-8">
<h2 className="text-4xl font-bold text-white mb-4 capitalize">
<h1 className="text-4xl font-bold text-white mb-4 capitalize">
MongoDB Query Language (MQL) {capitalCase(category)} {capitalCase(pluralize(type))}
</h2>
</h1>
<div className="w-24 h-1 bg-gradient-to-r from-blue-500 via-purple-500 to-green-500 rounded-full mb-6"></div>
{description && (
<div className="text-gray-400 text-lg mb-6">
Expand Down
4 changes: 2 additions & 2 deletions app/docs/reference/[type]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ export default async function CommandReferencePage({ params }: { params: Promise
<article>
<Breadcrumb type={type} />
<div className="mb-8">
<h2 className="text-4xl font-bold text-white mb-4 capitalize">
<h1 className="text-4xl font-bold text-white mb-4 capitalize">
MongoDB Query Language (MQL) {capitalCase(pluralize(type))}
</h2>
</h1>
<div className="w-24 h-1 bg-gradient-to-r from-blue-500 via-purple-500 to-green-500 rounded-full mb-6"></div>
{description && (
<div className="text-gray-400 text-lg mb-6">
Expand Down
4 changes: 2 additions & 2 deletions app/docs/reference/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ export default function Home() {
<article>
<Breadcrumb />
<div className="mb-8">
<h2 className="text-4xl font-bold text-white mb-4">
<h1 className="text-4xl font-bold text-white mb-4">
MongoDB Query Language (MQL)
</h2>
</h1>
<div className="w-24 h-1 bg-gradient-to-r from-blue-500 via-purple-500 to-green-500 rounded-full mb-6"></div>
{description && (
<div className="text-gray-400 text-lg mb-6">
Expand Down