Skip to content

Latest commit

 

History

History
340 lines (266 loc) · 8.83 KB

File metadata and controls

340 lines (266 loc) · 8.83 KB

Phase 1 Monetization - Implementation Summary

Date: 2026-02-12 Status: Ready to Deploy Estimated Time to Complete: 1-2 days for external setups


What Was Built

1. New Site Pages

/projectors - Recommended Projectors Page

  • Location: /src/app/projectors/page.tsx
  • Features:
    • 6 curated projector recommendations
    • Budget (£300-600), Mid-Range (£600-1000), Premium (£900+) tiers
    • Specs comparison (brightness, resolution)
    • Amazon affiliate links (placeholder - update with real Associate ID)
    • Buying guide section
    • Setup tips
    • Proper affiliate disclosure
  • Action Required: Replace YOUR_ASSOCIATE_ID with real Amazon Associates ID

/support - Support/Donations Page

  • Location: /src/app/support/page.tsx
  • Features:
    • Explanation of why support matters
    • Supporter benefits (£3, £5+, £10+ tiers)
    • Roadmap for future features
    • FAQ section
    • Ko-fi integration
  • Action Required: Update Ko-fi username after signup

/privacy - Privacy Policy

  • Location: /src/app/privacy/page.tsx
  • Features:
    • GDPR compliant
    • Amazon Associates disclosure
    • Analytics disclosure (Heap)
    • Ko-fi payment processing disclosure
    • Contact information
  • Action Required: None - ready to deploy

2. New Components

SupportButton Component

  • Location: /src/components/SupportButton.tsx
  • Features:
    • Three variants: nav, hero, footer
    • Ko-fi integration
    • Customizable styling
  • Action Required: Update Ko-fi username

3. Updated Site Elements

Navigation Bar

  • Added "Projectors" link (desktop only)
  • Added "Support" button
  • Updated styling for better mobile responsiveness

Footer

  • Added links to Projectors, Support, Privacy pages
  • Added Support button
  • Better responsive layout

Homepage

  • Added prominent "Need a Projector?" CTA section
  • Links to new projectors page

Documentation Created

1. Amazon Associates Signup Guide

  • File: AMAZON-ASSOCIATES-SIGNUP.md
  • Contents:
    • Complete signup checklist
    • Prerequisites (privacy policy requirement)
    • Step-by-step application process
    • Post-signup tasks
    • UK-specific notes
    • Testing instructions
    • Troubleshooting

2. Ko-fi Setup Guide

  • File: KOFI-SETUP.md
  • Contents:
    • Complete Ko-fi account setup
    • Profile optimization tips
    • Payment method setup
    • Site integration instructions
    • Marketing strategy
    • Success metrics
    • Tax considerations

3. TikTok Video Scripts

  • File: TIKTOK-VIDEO-SCRIPTS.md
  • Contents:
    • 3 complete video scripts with shot lists
    • Video 1: Hogwarts transformation (30-45s)
    • Video 2: D&D setup showcase (45-60s)
    • Video 3: Budget projector review (30-45s)
    • Posting strategy and timing
    • 15+ additional video ideas
    • Content calendar for first month
    • Analytics tracking guide

Action Items Checklist

Immediate (Week 1)

Amazon Associates

  • Review signup guide: AMAZON-ASSOCIATES-SIGNUP.md
  • Sign up at https://affiliate-program.amazon.com/
  • Complete application (20-30 mins)
  • Wait for approval (typically 1-3 days)
  • Get your Associate ID
  • Update /src/app/projectors/page.tsx with real Associate ID
  • Test affiliate links

Ko-fi

  • Review setup guide: KOFI-SETUP.md
  • Sign up at https://ko-fi.com/
  • Choose username (e.g., projectorwindows)
  • Set up profile (bio, images)
  • Connect PayPal or Stripe
  • Update /src/components/SupportButton.tsx with username
  • Test donation flow

Deploy Site Updates

cd /Users/dancourse/Claude/projector-windows
git add .
git commit -m "Add Phase 1 monetization: projectors page, Ko-fi support, privacy policy"
git push origin main

Then deploy to Netlify (auto-deploys on push, or manual):

netlify deploy --prod

Week 1-2: Content Creation

TikTok Setup

  • Create @projector_windows TikTok account
  • Set up account profile
    • Bio: "Free ambience videos for your projector 🪟"
    • Link: projectorwindows.net
  • Create Instagram backup account (same handle)

Film Videos

  • Review scripts in TIKTOK-VIDEO-SCRIPTS.md
  • Gather equipment (phone, tripod, projector)
  • Film all 3 videos in one session (3-4 hours)
  • Edit videos (2-3 hours)
  • Schedule first 3 posts

Social Media

  • Add Ko-fi link to TikTok bio
  • Add affiliate disclaimer to video descriptions
  • Prepare pinned comment with links

Week 2-3: Outreach

Brand Partnerships (Optional)

  • Research projector brands (XGIMI, Anker, BenQ)
  • Prepare partnership pitch email
  • Reach out to 5-10 brands

Community Sharing

  • Post to r/projectors (show off the tool + projector recommendations)
  • Post to r/DnD (focus on D&D use case)
  • Post to r/hometheater
  • Share on ProductHunt (optional - can wait for premium features)

Week 4: Monitor & Iterate

Analytics

  • Check Heap Analytics for traffic patterns
  • Monitor Amazon Associates dashboard for clicks/sales
  • Check Ko-fi dashboard for donations
  • Track TikTok video performance

Adjustments

  • Update projector recommendations based on feedback
  • Adjust affiliate link placement if needed
  • Iterate on TikTok content strategy
  • Respond to all comments and questions

Expected Results (Month 1)

Traffic

  • Current: ~100-200 visits/month
  • Target: 500-1,000 visits/month
  • Growth driver: TikTok videos

Revenue Breakdown

Amazon Affiliates:

  • Commission: 1-3% per sale
  • Average projector: £400
  • Commission per sale: £4-12
  • Target: 5-10 sales
  • Expected: £20-120

Ko-fi Donations:

  • Target: 5-10 supporters
  • Average: £3-5
  • Expected: £15-50

Total Month 1: £35-170

Success Indicators

  • At least 1 Amazon affiliate sale
  • At least 3 Ko-fi donations
  • 1 TikTok video with 10k+ views
  • Traffic increase of 200%+

Files to Update Post-Setup

1. Replace Placeholder Associate ID

File: /src/app/projectors/page.tsx

Find and replace all instances of:

amazonUrl: 'https://www.amazon.co.uk/dp/PRODUCT_ID?tag=YOUR_ASSOCIATE_ID'

With your actual Associate ID:

amazonUrl: 'https://www.amazon.co.uk/dp/PRODUCT_ID?tag=yourname-21'

2. Update Ko-fi Username

File: /src/components/SupportButton.tsx

Replace:

const kofiUsername = 'YOUR_KOFI_USERNAME';

With:

const kofiUsername = 'projectorwindows'; // or whatever you chose

Testing Checklist

Before going live, test:

  • All new pages load correctly
    • /projectors
    • /support
    • /privacy
  • Navigation links work
  • Footer links work
  • Support button opens Ko-fi (after username update)
  • Affiliate links open Amazon (after Associate ID update)
  • Mobile responsive on all pages
  • Privacy policy is accessible
  • Affiliate disclosure is visible on projectors page

Quick Reference

Key URLs

Files Modified

/src/app/page.tsx                      - Added projectors CTA
/src/app/layout.tsx                    - Updated nav and footer
/src/app/projectors/page.tsx           - NEW: Projectors recommendations
/src/app/support/page.tsx              - NEW: Support/donations page
/src/app/privacy/page.tsx              - NEW: Privacy policy
/src/components/SupportButton.tsx      - NEW: Ko-fi button component

Documentation Files

AMAZON-ASSOCIATES-SIGNUP.md            - Amazon signup guide
KOFI-SETUP.md                          - Ko-fi setup guide
TIKTOK-VIDEO-SCRIPTS.md                - Video scripts and strategy
PHASE-1-SUMMARY.md                     - This file

Next Steps After Phase 1

Once Phase 1 is stable and generating some revenue:

Phase 2 (Months 2-3): Premium Features

  • Curate 3-5 premium video collections
  • Implement Stripe payment
  • Add authentication (NextAuth.js)
  • Launch at £9.99 one-time or £2.99/month

Phase 3 (Months 4-6): D&D Premium Bundle

  • Survey D&D users for feature requests
  • Build custom playlist builder
  • Add grid overlay for tactical play
  • Launch at £24.99 one-time

See MONETIZATION.md for full roadmap.


Support & Contact

Questions during setup?

Need help with:

  • Amazon Associates approval: Check AMAZON-ASSOCIATES-SIGNUP.md troubleshooting
  • Ko-fi setup: Check KOFI-SETUP.md
  • TikTok strategy: See TIKTOK-VIDEO-SCRIPTS.md

Phase 1 Status: ✅ Code Complete - Ready for External Setup Next Action: Sign up for Amazon Associates and Ko-fi Estimated Time to Revenue: 1-2 weeks after external setup