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
2 changes: 1 addition & 1 deletion customize/themes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
return (
<a className="mt-4 gap-10 group cursor-pointer" href={href}>
<div>
<img className="mt-0 rounded-2xl group-hover:scale-105 transition-all block" src={`https://raw.githubusercontent.com/mintlify/docs/refs/heads/main/images/themes/${value}.png`} alt={title} noZoom />
<img className="mt-0 rounded-2xl group-hover:scale-105 transition-all block" src={`/images/themes/${value}.png`} alt={title} noZoom />
</div>
<div>
<div className="mt-4 flex space-x-2 items-center">
Expand All @@ -27,8 +27,8 @@
</div>
</div>
</a>
);

Check warning on line 30 in customize/themes.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

customize/themes.mdx#L30

Use semicolons judiciously.
};

Check warning on line 31 in customize/themes.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

customize/themes.mdx#L31

Use semicolons judiciously.

<div className="pt-10 pb-24 px-4 px-4 max-w-3xl mx-auto prose prose-gray">
<label className="eyebrow h-5 text-primary dark:text-primary-light text-sm font-semibold">Core Concepts</label>
Expand Down
2 changes: 1 addition & 1 deletion docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"light": "#26BD6C",
"dark": "#166E3F"
},
"favicon": "https://raw.githubusercontent.com/mintlify/docs/refs/heads/main/favicon.ico",
"favicon": "/favicon.ico",
"icons": {
"library": "lucide"
},
Expand Down
2 changes: 1 addition & 1 deletion es/customize/themes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const ThemeCard = ({ title, value, description, href }) => {
return (
<a className="mt-4 gap-10 group cursor-pointer" href={href}>
<div>
<img className="mt-0 rounded-2xl group-hover:scale-105 transition-all block" src={`https://raw.githubusercontent.com/mintlify/docs/refs/heads/main/images/themes/${value}.png`} alt={title} noZoom />
<img className="mt-0 rounded-2xl group-hover:scale-105 transition-all block" src={`/images/themes/${value}.png`} alt={title} noZoom />
</div>
<div>
<div className="mt-4 flex space-x-2 items-center">
Expand Down
4 changes: 2 additions & 2 deletions es/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ export const HeroCard = ({ filename, title, description, href }) => {
return (
<a className="group cursor-pointer pb-8" href={href}>
<img
src={`https://raw.githubusercontent.com/mintlify/docs/refs/heads/main/images/hero/${filename}.png`}
src={`/images/hero/${filename}.png`}
className="block dark:hidden pointer-events-none group-hover:scale-105 transition-all duration-100"
/>
<img
src={`https://raw.githubusercontent.com/mintlify/docs/refs/heads/main/images/hero/${filename}-dark.png`}
src={`/images/hero/${filename}-dark.png`}
className="pointer-events-none group-hover:scale-105 transition-all duration-100 hidden dark:block"
/>
<h3 className="mt-5 text-gray-900 dark:text-zinc-50 font-medium">
Expand Down
2 changes: 1 addition & 1 deletion fr/customize/themes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const ThemeCard = ({ title, value, description, href }) => {
return (
<a className="mt-4 gap-10 group cursor-pointer" href={href}>
<div>
<img className="mt-0 rounded-2xl group-hover:scale-105 transition-all block" src={`https://raw.githubusercontent.com/mintlify/docs/refs/heads/main/images/themes/${value}.png`} alt={title} noZoom />
<img className="mt-0 rounded-2xl group-hover:scale-105 transition-all block" src={`/images/themes/${value}.png`} alt={title} noZoom />
</div>
<div>
<div className="mt-4 flex space-x-2 items-center">
Expand Down
4 changes: 2 additions & 2 deletions fr/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ export const HeroCard = ({ filename, title, description, href }) => {
return (
<a className="group cursor-pointer pb-8" href={href}>
<img
src={`https://raw.githubusercontent.com/mintlify/docs/refs/heads/main/images/hero/${filename}.png`}
src={`/images/hero/${filename}.png`}
className="block dark:hidden pointer-events-none group-hover:scale-105 transition-all duration-100"
/>
<img
src={`https://raw.githubusercontent.com/mintlify/docs/refs/heads/main/images/hero/${filename}-dark.png`}
src={`/images/hero/${filename}-dark.png`}
className="pointer-events-none group-hover:scale-105 transition-all duration-100 hidden dark:block"
/>
<h3 className="mt-5 text-gray-900 dark:text-zinc-50 font-medium">
Expand Down
4 changes: 2 additions & 2 deletions index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@

export const HeroCard = ({ filename, title, description, href }) => {
return (
<a className="group cursor-pointer pb-8" href={href}>

Check warning on line 10 in index.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

index.mdx#L10

Use 'classnames?' instead of 'className'.
<img
src={`https://raw.githubusercontent.com/mintlify/docs/refs/heads/main/images/hero/${filename}.png`}
src={`/images/hero/${filename}.png`}
className="block dark:hidden pointer-events-none group-hover:scale-105 transition-all duration-100"
/>
<img
src={`https://raw.githubusercontent.com/mintlify/docs/refs/heads/main/images/hero/${filename}-dark.png`}
src={`/images/hero/${filename}-dark.png`}
className="pointer-events-none group-hover:scale-105 transition-all duration-100 hidden dark:block"
/>
<h3 className="mt-5 text-gray-900 dark:text-zinc-50 font-medium">
Expand All @@ -21,8 +21,8 @@
</h3>
<span className="mt-1.5">{description}</span>
</a>
);

Check warning on line 24 in index.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

index.mdx#L24

Use semicolons judiciously.
};

Check warning on line 25 in index.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

index.mdx#L25

Use semicolons judiciously.

<div className="relative">
<div className="absolute -top-14 left-0 right-0 opacity-80">
Expand Down
2 changes: 1 addition & 1 deletion zh/customize/themes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const ThemeCard = ({ title, value, description, href }) => {
return (
<a className="mt-4 gap-10 group cursor-pointer" href={href}>
<div>
<img className="mt-0 rounded-2xl group-hover:scale-105 transition-all block" src={`https://raw.githubusercontent.com/mintlify/docs/refs/heads/main/images/themes/${value}.png`} alt={title} noZoom />
<img className="mt-0 rounded-2xl group-hover:scale-105 transition-all block" src={`/images/themes/${value}.png`} alt={title} noZoom />
</div>
<div>
<div className="mt-4 flex space-x-2 items-center">
Expand Down
4 changes: 2 additions & 2 deletions zh/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ export const HeroCard = ({ filename, title, description, href }) => {
return (
<a className="group cursor-pointer pb-8" href={href}>
<img
src={`https://raw.githubusercontent.com/mintlify/docs/refs/heads/main/images/hero/${filename}.png`}
src={`/images/hero/${filename}.png`}
className="block dark:hidden pointer-events-none group-hover:scale-105 transition-all duration-100"
/>
<img
src={`https://raw.githubusercontent.com/mintlify/docs/refs/heads/main/images/hero/${filename}-dark.png`}
src={`/images/hero/${filename}-dark.png`}
className="pointer-events-none group-hover:scale-105 transition-all duration-100 hidden dark:block"
/>
<h3 className="mt-5 text-gray-900 dark:text-zinc-50 font-medium">
Expand Down
Loading