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
9,087 changes: 1 addition & 9,086 deletions frontend/packages/icons/manifest.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion frontend/packages/icons/scripts/postinstall.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ if (process.env.FONTAWESOME_PACKAGE_TOKEN) {
"private": true,
"sideEffects": false,
"dependencies": {
"@awesome.me/kit-63db24046b": "^1.0.12",
"@awesome.me/kit-63db24046b": "^1.0.13",
"@fortawesome/pro-regular-svg-icons": "6.6.0",
"@fortawesome/pro-solid-svg-icons": "6.6.0"
}
Expand Down
175 changes: 175 additions & 0 deletions site/public/llms-full.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions site/public/llms.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ export function TechSection() {
alt="Rust"
/>
<TechLink
href="/docs/clients/nextjs"
href="/docs/clients/next-js"
name="Next.js"
icon={nextjsLogo}
alt="Next.js"
Expand Down
4 changes: 2 additions & 2 deletions site/src/components/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@ export function Card({
</div>
</div>
)}
<div className={clsx("px-8", (title || icon) ? "pb-6" : "py-6")}>
<div className={clsx("px-8", title || icon ? "pb-6" : "py-6")}>
{children}
</div>
</div>
);

if (href) {
return (
<Link href={href} className="block group" target={target}>
<Link href={href} className="flex group" target={target}>
{content}
</Link>
);
Expand Down
8 changes: 7 additions & 1 deletion site/src/components/DocsNavigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,14 @@ function TreeItem({ index, item, level = 0, parentPath = "" }: TreeItemProps) {

return (
<NavLink href={item.href} external={item.external} level={level}>
{item.icon ? (
{item.icon && "prefix" in item.icon ? (
<Icon icon={item.icon} className="mr-2 size-3.5" />
) : item.icon ? (
<img
{...(item.icon as Record<string, string>)}
className="mr-2 size-3.5"
alt={item.title}
/>
) : null}
<span className="truncate">
{item.title ?? routes.pages[getAliasedHref(item.href)]?.title}
Expand Down
Loading
Loading