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
4 changes: 4 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,7 @@
packages/angular/**/*.test.ts
packages/angular/**/*.config.ts
examples/angular-example/**/*.config.ts

# Next.js build output
docs/.next/**
docs/node_modules/**
1 change: 1 addition & 0 deletions docs/app/components/DocsLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ const navigation = [
{ title: 'API Reference', href: '/docs/api' },
{ title: 'Examples', href: '/docs/examples' },
{ title: 'Best Practices', href: '/docs/best-practices' },
{ title: 'How This Works', href: '/docs/how-this-works' },
{ title: 'Changelog', href: '/docs/changelog' },
],
},
Expand Down
13 changes: 13 additions & 0 deletions docs/app/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,12 @@ export function Header() {
>
API
</Link>
<Link
href="/docs/how-this-works"
className="text-gray-600 dark:text-gray-300 hover:text-teal-600 dark:hover:text-teal-400 transition-colors"
>
How This Works
</Link>
<Link
href="/docs/changelog"
className="text-gray-600 dark:text-gray-300 hover:text-teal-600 dark:hover:text-teal-400 transition-colors"
Expand Down Expand Up @@ -141,6 +147,13 @@ export function Header() {
>
API
</Link>
<Link
href="/docs/how-this-works"
className="block text-gray-600 dark:text-gray-300 hover:text-teal-600 dark:hover:text-teal-400 transition-colors"
onClick={() => setMobileMenuOpen(false)}
>
How This Works
</Link>
<Link
href="/docs/changelog"
className="block text-gray-600 dark:text-gray-300 hover:text-teal-600 dark:hover:text-teal-400 transition-colors"
Expand Down
2 changes: 1 addition & 1 deletion docs/app/components/HomeContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ interface HomeContentProps {
/** macOS-style terminal window for code example */
function QuickExampleTerminal() {
return (
<div className="w-full max-w-4xl mx-auto px-6">
<div className="w-full max-w-4xl mx-auto">
<div className="rounded-xl overflow-hidden text-left shadow-xl bg-white dark:bg-[#0d0d0d] border border-gray-200 dark:border-[#2d2d2d]">
{/* Traffic-light dots */}
<div className="flex items-center gap-1.5 px-4 py-3 border-b border-gray-200 dark:border-[#2d2d2d]">
Expand Down
Loading
Loading