Commit Graph

131 Commits

Author SHA1 Message Date
Oleg Proskurin 0dc15d8694 chore: adjust page 2026-01-06 00:49:39 +07:00
Oleg Proskurin 9eb63bea22 feat: improve guide 2026-01-06 00:35:56 +07:00
Oleg Proskurin df3720557c feat: guide update 2026-01-05 21:27:13 +07:00
Oleg Proskurin 77a2a03a81 feat: new version 2026-01-05 11:31:05 +07:00
Oleg Proskurin 8080e7012e doc: prepare for guide 2026-01-04 20:44:21 +07:00
Oleg Proskurin 9b032eaf5a doc: updates to live urls 2026-01-04 15:04:26 +07:00
Oleg Proskurin 1aa307aac9 fix: icons location 2026-01-04 13:46:14 +07:00
Oleg Proskurin b7463258f5 feat: update metadata 2026-01-04 13:31:11 +07:00
Oleg Proskurin 338a083052 feat: add favicon 2026-01-04 13:25:30 +07:00
Oleg Proskurin 582220166a feat: update sidebar 2026-01-03 03:40:50 +07:00
Oleg Proskurin 513b983187 fix: footer 2026-01-03 01:55:32 +07:00
Oleg Proskurin 0ebc893c33 feat: add placeholders to docs 2026-01-03 01:51:13 +07:00
Oleg Proskurin 801080d565 feat: SEO adjustment for homepage 2026-01-02 21:36:17 +07:00
Oleg Proskurin b60a97c73f fix: sidebar 2026-01-02 21:27:07 +07:00
Oleg Proskurin 5d1309633d fix: ensure trailing slashes 2026-01-02 21:08:28 +07:00
Oleg Proskurin 5d7da9e59c fix: use trailing slashes 2026-01-02 19:13:31 +07:00
Oleg Proskurin fcbb5396b3 fix: correct logo 2026-01-02 14:47:00 +07:00
Oleg Proskurin 52649dfb3b feat(docs): add SEO metadata to all documentation pages
- Create centralized SEO config (docs-seo.ts) with DOCS_PAGES constants
  and createDocsMetadata helper for DRY metadata generation
- Add JSON-LD schema helpers (docs-schema.ts) for BreadcrumbList,
  TechArticle, HowTo, and WebAPI structured data
- Create JsonLd component for rendering structured data
- Add metadata exports and JSON-LD to all 10 docs pages:
  - Getting Started, Generation, Images, Live URLs, Authentication
  - API Overview, Generations API, Images API, Flows API, Live Scopes API

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-01 18:39:39 +07:00
Oleg Proskurin 9a6c409906 fix(docs): correct autoEnhance default value to true in Live URLs
🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-01 17:57:24 +07:00
Oleg Proskurin 308bea624e refactor(landing): remove unnecessary 'use client' from docs pages
Remove 'use client' directive from 10 documentation pages that don't
use client-side features. Pages are pure static content; the DocPage
wrapper component handles any client-side functionality.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-01 16:32:35 +07:00
Oleg Proskurin dbb8504249 docs: update documentation to reflect new 16:9 default aspect ratio
Update default aspect ratio references from 1:1 to 16:9 in:
- Generation guide
- Live Scopes API reference
- Live URLs guide

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-01 16:32:25 +07:00
Oleg Proskurin 4e5a14f3de chore(landing): add docs pages to sitemap
Added all documentation pages to sitemap.xml:
- Getting Started (/docs)
- Image Generation (/docs/generation)
- Working with Images (/docs/images)
- Live URLs (/docs/live-urls)
- Authentication (/docs/authentication)
- API Reference (/docs/api)
- API: Generations, Images, Flows, Live Scopes

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-31 20:27:27 +07:00
Oleg Proskurin f3aaea1e6d fix(landing): use label as React key in SubsectionNav to avoid duplicates
Multiple disabled nav items share the same href '#', causing React
duplicate key warning. Changed key from item.href to item.label
which is guaranteed to be unique.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-31 20:26:47 +07:00
Oleg Proskurin 2d01fa4182 feat(landing): update subnav items to API, SDK, MCP, CLI, Lab
- Docs layout: API (active), SDK/MCP/CLI/Lab (disabled)
- Demo layout: API, SDK/MCP/CLI (disabled), Lab (active, links to demo)
- Disabled items show "Coming soon" tooltip on hover

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-31 18:38:42 +07:00
Oleg Proskurin 62594774e3 feat(landing): add disabled prop support to SubsectionNav
- Added optional disabled property to NavItem interface
- Disabled items show gray text and cursor-not-allowed
- Desktop: Tooltip on hover shows "Coming soon"
- Mobile: Inline "(Coming soon)" label after item text
- Uses aria-disabled for accessibility

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-31 18:36:29 +07:00
Oleg Proskurin 21dfd31338 feat(landing): implement route groups for different header behaviors
- Created (landings) route group for home page with sticky header
- Created (apps) route group for docs/demo/admin with scrollable header
- Moved page components to respective route groups
- Updated root layout to be minimal (no header/footer)
- Each route group has its own layout with appropriate header style
- Updated Footer and layouts to use public folder logo path

This enables sticky header on landing pages while docs/demo pages
have a header that scrolls away with content.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-31 18:35:05 +07:00
Oleg Proskurin 358e4db0e3 fix(docs): sidebar active state not showing due to trailing slash mismatch
Next.js usePathname() returns paths with trailing slashes during static
generation (e.g., /docs/) but navigation hrefs use paths without trailing
slashes (e.g., /docs). The strict equality comparison was always failing.

Added path normalization to strip trailing slashes before comparison.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-31 16:03:46 +07:00
Oleg Proskurin 13f0a4f04f feat: init docs section 2025-12-31 15:00:44 +07:00
Oleg Proskurin bbe39bddc5 feat: responsive hero 2025-12-19 00:19:35 +07:00
Oleg Proskurin 052584a78b chore: hide footer links 2025-12-18 23:53:14 +07:00
Oleg Proskurin f37ae00177 feat: responsive footer 2025-12-18 23:47:36 +07:00
Oleg Proskurin 12cfeeda18 feat: make sticky header 2025-12-18 23:37:35 +07:00
Oleg Proskurin 62a03749e7 feat: update header 2025-12-18 23:29:24 +07:00
Oleg Proskurin ef8be82aa8 fix: logo optimisation 2025-12-18 23:26:01 +07:00
Oleg Proskurin efbcb8bfcd feat: optimize homepage 2025-12-18 00:21:07 +07:00
Oleg Proskurin 097fdd3d2d feat: switch to TW 2025-12-18 00:01:06 +07:00
Oleg Proskurin 42893a515c feat: move form to a separate component 2025-12-17 23:31:54 +07:00
Oleg Proskurin b7801ef528 fix: mobile hero 2025-12-16 00:34:31 +07:00
Oleg Proskurin d9781ae3fc feat: add analytics 2025-12-16 00:24:33 +07:00
Oleg Proskurin 9679934bb8 feat: add sitemap and robots 2025-12-15 23:34:06 +07:00
Oleg Proskurin f433f59e6b feat: setup trailing slashes 2025-12-15 23:32:01 +07:00
Oleg Proskurin 9c4dd35782 feat: update description 2025-12-15 13:04:09 +07:00
Oleg Proskurin 93defca7d2 feat: add og image 2025-12-15 12:42:39 +07:00
Oleg Proskurin d746a57fa0 fix: styles 2025-12-15 12:33:13 +07:00
Oleg Proskurin ccf44af93f fix 2025-12-15 00:39:28 +07:00
Oleg Proskurin ce705efd10 remove prettier 2025-12-15 00:34:54 +07:00
Oleg Proskurin 59874d9437 fix docker 2025-12-15 00:34:45 +07:00
Oleg Proskurin 5e899419a4 fix: remove old metatags 2025-12-15 00:19:15 +07:00
Oleg Proskurin 1f4766a33d fix: viewport 2025-12-15 00:12:58 +07:00
Oleg Proskurin d1d9517926 feat: add metadata 2025-12-15 00:11:11 +07:00