"use client"; import { useParams, usePathname } from "next/navigation"; import { Megaphone, MessageSquare, Globe, Target, Rocket, Sparkles, Edit, Plus, } from "lucide-react"; import { PageTemplate, PageSection, PageCard, PageGrid, } from "@/components/layout/page-template"; import { Button } from "@/components/ui/button"; const MARKET_NAV_ITEMS = [ { title: "Value Proposition", icon: Target, href: "/market" }, { title: "Messaging Framework", icon: MessageSquare, href: "/market#messaging" }, { title: "Website Copy", icon: Globe, href: "/market#website" }, { title: "Launch Strategy", icon: Rocket, href: "/market#launch" }, { title: "Target Channels", icon: Megaphone, href: "/market#channels" }, ]; export default function MarketPage() { const params = useParams(); const pathname = usePathname(); const workspace = params.workspace as string; const projectId = params.projectId as string; const sidebarItems = MARKET_NAV_ITEMS.map((item) => { const fullHref = `/${workspace}/project/${projectId}${item.href}`; return { ...item, href: fullHref, isActive: pathname === fullHref || pathname.startsWith(fullHref), }; }); return ( {/* Value Proposition */} Edit } >

Headline

Build Your Product Faster with AI-Powered Insights

Subheadline

Turn conversations into code, design, and marketing - all in one platform

Key Benefits

  • Save weeks of planning and research
  • Get AI-generated designs and code structure
  • Launch with confidence and clarity
{/* Messaging Framework */}

Primary Message

For solo founders and small teams building their first product

"Stop getting stuck in planning. Start building with AI as your co-founder."

Positioning

Different from competitors because...

"We don't just track - we actively guide you from idea to launch with AI."

{/* Website Copy */} Generate More } >

Hero Section

Headline

Build Your SaaS from Idea to Launch

CTA Button

Start Building Free →

Features Section

🎯 AI Interview

Chat with AI to define your product

🎨 Auto Design

Generate UI screens instantly

🚀 Launch Plan

Get a complete go-to-market strategy

Social Proof

"This tool cut our planning time from 4 weeks to 2 days. Incredible."

- Founder Name, Company

{/* Launch Strategy */}

Launch Timeline

Week 1-2
Soft launch to beta testers
Week 3
Product Hunt launch
Week 4+
Content marketing & SEO
{/* Target Channels */} Add Channel } >

Twitter/X

Primary channel for developer audience

High Priority

Product Hunt

Launch day visibility and early adopters

Launch Day

Dev Communities

Indie Hackers, Reddit, Discord servers

Ongoing

Content Marketing

Blog posts, tutorials, case studies

Long-term
); }