From afefb43ce5b09b3006bdad2a15987cb652e1d2e1 Mon Sep 17 00:00:00 2001 From: Oleg Proskurin Date: Fri, 2 Jan 2026 21:27:34 +0700 Subject: [PATCH] tasks: add homepage placeholders --- inbox/task-homepage-placeholder-seo.md | 75 ++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 inbox/task-homepage-placeholder-seo.md diff --git a/inbox/task-homepage-placeholder-seo.md b/inbox/task-homepage-placeholder-seo.md new file mode 100644 index 0000000..8a44ee6 --- /dev/null +++ b/inbox/task-homepage-placeholder-seo.md @@ -0,0 +1,75 @@ +# Task: Homepage Placeholder SEO Keywords + +**Priority:** High +**Estimated time:** 5 min +**Type:** SEO optimization + +--- + +## Change 1: Update keywords in metadata + +**File:** `apps/landing/src/app/(landings)/page.tsx` + +**Find:** +```typescript +keywords: [ + 'API-first image generation', + 'AI image API', + 'image generation for developers', + 'prompt to image API', + 'CDN image delivery', +], +``` + +**Replace with:** +```typescript +keywords: [ + 'AI image API', + 'image generation for developers', + 'prompt to image API', + 'CDN image delivery', + 'placeholder images', + 'ai placeholder generator', + 'placeholder image url', + 'image placeholder api', +], +``` + +--- + +## Change 2: Update PromptUrlsSection subtitle + +**File:** `apps/landing/src/app/(landings)/_components/PromptUrlsSection.tsx` + +**Find:** +```tsx +

+ Perfect for static sites, prototypes, and AI coding agents that generate HTML. +

+``` + +**Replace with:** +```tsx +

+ Perfect for placeholder images, prototypes, static sites, and AI coding agents. +

+``` + +--- + +## Verification + +After changes: +1. Run `pnpm dev` in `apps/landing` +2. Check homepage loads without errors +3. Inspect page source — verify new keywords in meta tag +4. Scroll to Prompt URLs section — verify updated text + +--- + +## Done criteria + +- [ ] Keywords array updated with 8 items +- [ ] PromptUrlsSection shows "placeholder images" first in list +- [ ] No TypeScript/lint errors +- [ ] Page renders correctly