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
9 changes: 3 additions & 6 deletions apps/web/app/(main)/docs/catalog/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,13 +116,10 @@ const customPrompt = catalog.prompt({
<h2 className="text-xl font-semibold mt-12 mb-4">Next</h2>
<p className="text-sm text-muted-foreground">
Learn how to{" "}
<Link
href="/docs/components"
className="text-foreground hover:underline"
>
register React components
<Link href="/docs/registry" className="text-foreground hover:underline">
register components
</Link>{" "}
for your catalog.
in your registry.
</p>
</article>
);
Expand Down
2 changes: 1 addition & 1 deletion apps/web/components/docs-mobile-nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const navigation = [
title: "Core Concepts",
items: [
{ title: "Catalog", href: "/docs/catalog" },
{ title: "Components", href: "/docs/components" },
{ title: "Registry", href: "/docs/registry" },
{ title: "Data Binding", href: "/docs/data-binding" },
{ title: "Actions", href: "/docs/actions" },
{ title: "Visibility", href: "/docs/visibility" },
Expand Down
12 changes: 11 additions & 1 deletion apps/web/next.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};
const nextConfig = {
async redirects() {
return [
{
source: "/docs/components",
destination: "/docs/registry",
permanent: true,
},
];
},
};

export default nextConfig;
2 changes: 1 addition & 1 deletion examples/remotion/tsconfig.tsbuildinfo

Large diffs are not rendered by default.