diff --git a/docs/plans/FINAL-PRELAUNCH.md b/docs/plans/FINAL-PRELAUNCH.md
index a056aaab..d0cc5957 100644
--- a/docs/plans/FINAL-PRELAUNCH.md
+++ b/docs/plans/FINAL-PRELAUNCH.md
@@ -450,22 +450,36 @@ Simple pricing page with three plans:
---
-## 8.3 - Upcoming Features Section ❌
+## 8.3 - Upcoming Features Section ✅
**Location**: Frontend marketing site ONLY (not in-app)
-Highlight coming soon features:
-- New site builder (THE SEO HOLY GRAIL)
-- Interlinking
-- Backlinks
-- Optimization
-- Socializer - integration and posting to social and video channels
-- Videos and reels in article and social
-- Products / Services pages (coming soon)
+- ✅ Created dedicated `/upcoming` page with timeline-based feature groups
+- ✅ Organized features into 3 phases: Feb 2026, Q2 2026, Q3-Q4 2026
+- ✅ Added to footer navigation under "Resources"
-**Texts to fix**:
-- Standardize terminology: "articles" vs "content" vs "pages"
-- Mark Products/Services as "(coming soon)"
+**Completed Features Documented**:
+
+**Phase 1 - Launching February 2026**:
+- Linker Module (internal/external linking with clustering)
+- Optimizer Module (content re-optimization engine)
+
+**Phase 2 - Launching Q2 2026**:
+- Products Pages (e-commerce product content generation)
+- Services Pages (service business content engine)
+- Company Pages (corporate website essentials)
+
+**Phase 3 - Launching Q3-Q4 2026**:
+- Socializer Module (multi-platform social publishing)
+- Video Content Creator (AI video generation & publishing)
+- Site Builder (the SEO holy grail)
+- Advanced Analytics (performance insights & reporting)
+
+**Visual Design**:
+- Unique color badges for each timeline phase
+- Rich visual layout with gradients and hover effects
+- Feature cards with icons, descriptions, and detailed bullet points
+- Consistent with existing marketing site design system
---
diff --git a/frontend/src/marketing/MarketingApp.tsx b/frontend/src/marketing/MarketingApp.tsx
index a5ca516c..63129c05 100644
--- a/frontend/src/marketing/MarketingApp.tsx
+++ b/frontend/src/marketing/MarketingApp.tsx
@@ -14,6 +14,7 @@ const CaseStudies = lazy(() => import("./pages/CaseStudies"));
const Partners = lazy(() => import("./pages/Partners"));
const Contact = lazy(() => import("./pages/Contact"));
const Waitlist = lazy(() => import("./pages/Waitlist"));
+const Upcoming = lazy(() => import("./pages/Upcoming"));
const MarketingApp: React.FC = () => {
return (
@@ -31,6 +32,7 @@ const MarketingApp: React.FC = () => {
} />
} />
} />
+ } />
diff --git a/frontend/src/marketing/data/navLinks.ts b/frontend/src/marketing/data/navLinks.ts
index f7cdbc8a..a47546e1 100644
--- a/frontend/src/marketing/data/navLinks.ts
+++ b/frontend/src/marketing/data/navLinks.ts
@@ -36,6 +36,7 @@ export const footerNavGroups: { title: string; links: NavLinkItem[] }[] = [
{ name: "Help Center", path: "/resources#help" },
{ name: "Documentation", path: "/resources#docs" },
{ name: "Partner Program", path: "/partners" },
+ { name: "Upcoming Features", path: "/upcoming" },
],
},
];
diff --git a/frontend/src/marketing/pages/Upcoming.tsx b/frontend/src/marketing/pages/Upcoming.tsx
new file mode 100644
index 00000000..47d47e4c
--- /dev/null
+++ b/frontend/src/marketing/pages/Upcoming.tsx
@@ -0,0 +1,332 @@
+import React from "react";
+import { Link } from "react-router-dom";
+import {
+ LinkIcon,
+ ShoppingBagIcon,
+ BriefcaseIcon,
+ ArrowTrendingUpIcon,
+ ShareIcon,
+ VideoCameraIcon,
+ SparklesIcon,
+ BuildingStorefrontIcon,
+ PencilSquareIcon,
+ ChartBarIcon,
+ GlobeAltIcon,
+ RocketLaunchIcon,
+} from "@heroicons/react/24/outline";
+import SEO from "../components/SEO";
+import { getMetaTags } from "../config/metaTags";
+
+const Upcoming: React.FC = () => {
+ const renderCta = (cta: { label: string; href: string }, className: string) => {
+ const isExternal = cta.href.startsWith("http");
+
+ if (isExternal) {
+ return (
+
+ {cta.label}
+
+ );
+ }
+
+ return (
+
+ {cta.label}
+
+ );
+ };
+
+ const upcomingFeatures = [
+ {
+ phase: "Launching February 2026",
+ badge: "Launching Soon",
+ badgeColor: "bg-gradient-to-r from-[var(--color-success)] to-[var(--color-success-dark)] text-white",
+ borderColor: "border-[var(--color-success)]/30",
+ features: [
+ {
+ icon: LinkIcon,
+ title: "Linker Module",
+ subtitle: "Intelligent Internal & External Linking",
+ description: "Automatically create strategic internal links between related content based on your keyword clusters. Build topical authority with AI-powered link suggestions that understand semantic relationships.",
+ bullets: [
+ "Internal linking mapped to keyword clusters",
+ "External link suggestions to authoritative sources",
+ "Anchor text optimization for SEO",
+ "Link health monitoring and broken link detection",
+ "Cross-site linking for multi-brand portfolios",
+ ],
+ color: "from-[var(--color-primary)] to-[var(--color-primary-dark)]",
+ },
+ {
+ icon: ArrowTrendingUpIcon,
+ title: "Optimizer Module",
+ subtitle: "Content Re-Optimization Engine",
+ description: "Analyze and improve existing content performance. AI-powered recommendations for content updates, keyword optimization, and structural improvements to boost rankings.",
+ bullets: [
+ "Content performance analysis and scoring",
+ "AI-powered rewrite suggestions",
+ "Keyword gap analysis vs competitors",
+ "Structure and readability improvements",
+ "Auto-update stale content with fresh information",
+ ],
+ color: "from-[var(--color-warning)] to-[var(--color-warning-dark)]",
+ },
+ ],
+ },
+ {
+ phase: "Launching Q2 2026",
+ badge: "In Development",
+ badgeColor: "bg-gradient-to-r from-[var(--color-purple)] to-[var(--color-purple-dark)] text-white",
+ borderColor: "border-[var(--color-purple)]/30",
+ features: [
+ {
+ icon: ShoppingBagIcon,
+ title: "Products Pages",
+ subtitle: "E-commerce Product Content Generation",
+ description: "Generate SEO-optimized product pages at scale. Create product descriptions, specifications, features, and benefits with AI that understands your product catalog and target audience.",
+ bullets: [
+ "Bulk product page generation from catalog data",
+ "Product attribute optimization (specs, features, benefits)",
+ "Category landing pages with clustering",
+ "Product comparison pages",
+ "Schema markup for rich snippets",
+ ],
+ color: "from-[var(--color-success)] to-[var(--color-success-dark)]",
+ },
+ {
+ icon: BriefcaseIcon,
+ title: "Services Pages",
+ subtitle: "Service Business Content Engine",
+ description: "Create comprehensive service pages for B2B and B2C service businesses. Generate service descriptions, process explanations, pricing structures, and case studies.",
+ bullets: [
+ "Service description templates by industry",
+ "Multi-location service pages",
+ "Service area pages for local SEO",
+ "Process and methodology explanations",
+ "Integration with company brand guidelines",
+ ],
+ color: "from-[var(--color-primary)] to-[var(--color-primary-dark)]",
+ },
+ {
+ icon: BuildingStorefrontIcon,
+ title: "Company Pages",
+ subtitle: "Corporate Website Essentials",
+ description: "Generate and optimize essential company pages: About Us, Team, Careers, Contact, FAQ. Maintain brand consistency while optimizing for search and conversion.",
+ bullets: [
+ "About Us, Mission, Vision, Values pages",
+ "Team member profiles and bios",
+ "Careers and job listing pages",
+ "FAQ pages mapped to search intent",
+ "Press and media pages",
+ ],
+ color: "from-[var(--color-purple)] to-[var(--color-purple-dark)]",
+ },
+ ],
+ },
+ {
+ phase: "Launching Q3-Q4 2026",
+ badge: "Planned",
+ badgeColor: "bg-gradient-to-r from-[var(--color-warning)] to-[var(--color-warning-dark)] text-white",
+ borderColor: "border-[var(--color-warning)]/30",
+ features: [
+ {
+ icon: ShareIcon,
+ title: "Socializer Module",
+ subtitle: "Multi-Platform Social Publishing",
+ description: "Automatically publish content to top 5 social platforms. Generate platform-specific posts, images, and captions optimized for each channel. Schedule and manage all social content from one place.",
+ bullets: [
+ "Auto-post to LinkedIn, Twitter/X, Facebook, Instagram, TikTok",
+ "Platform-specific content adaptation (tone, length, format)",
+ "Social media calendar integrated with content calendar",
+ "Image optimization per platform specs",
+ "Engagement tracking and analytics",
+ ],
+ color: "from-[var(--color-success)] to-[var(--color-success-dark)]",
+ },
+ {
+ icon: VideoCameraIcon,
+ title: "Video Content Creator",
+ subtitle: "AI Video Generation & Publishing",
+ description: "Generate video content from articles. Create short-form videos for social (Reels, Shorts, TikTok) and long-form for YouTube. Automated video publishing to video platforms.",
+ bullets: [
+ "Article-to-video conversion with AI voiceover",
+ "Short-form video for Reels, Shorts, TikTok",
+ "Long-form video for YouTube with chapters",
+ "Video SEO optimization (titles, descriptions, tags)",
+ "Automated publishing to video platforms",
+ ],
+ color: "from-[var(--color-primary)] to-[var(--color-primary-dark)]",
+ },
+ {
+ icon: SparklesIcon,
+ title: "Site Builder",
+ subtitle: "The SEO Holy Grail",
+ description: "Revolutionary site builder that creates fully optimized, content-rich websites from scratch. Automated architecture planning, content generation, design selection, and deployment.",
+ bullets: [
+ "Automated site architecture based on keyword research",
+ "Full website content generation in minutes",
+ "SEO-optimized templates and design systems",
+ "Internal linking structure built-in",
+ "One-click deployment to hosting",
+ ],
+ color: "from-[var(--color-warning)] to-[var(--color-warning-dark)]",
+ },
+ {
+ icon: ChartBarIcon,
+ title: "Advanced Analytics",
+ subtitle: "Performance Insights & Reporting",
+ description: "Deep analytics for content performance, keyword rankings, traffic attribution, and ROI tracking. Custom reports and dashboards for agencies and enterprises.",
+ bullets: [
+ "Keyword ranking tracking integration",
+ "Content performance analytics",
+ "Traffic and conversion attribution",
+ "Custom white-label reports",
+ "API access for data export",
+ ],
+ color: "from-[var(--color-purple)] to-[var(--color-purple-dark)]",
+ },
+ ],
+ },
+ ];
+
+ return (
+ <>
+
+
+ {/* HERO SECTION */}
+
+
+
+
+
+
+
+
+ Innovation Roadmap
+
+
+
+ What's Coming to IGNY8
+
+
+
+ We're building the future of AI-powered content marketing. Here's what's launching in 2026.
+
+
+
+ {renderCta(
+ { label: "Start Creating Today", href: "https://app.igny8.com/signup" },
+ "px-8 py-4 bg-white text-[var(--color-primary)] rounded-lg font-semibold hover:bg-gray-100 transition-colors shadow-lg"
+ )}
+ {renderCta(
+ { label: "View Current Features", href: "/product" },
+ "px-8 py-4 bg-white/10 backdrop-blur-sm text-white rounded-lg font-semibold hover:bg-white/20 transition-colors border border-white/20"
+ )}
+
+
+
+
+
+ {/* UPCOMING FEATURES TIMELINE */}
+ {upcomingFeatures.map((phase, phaseIndex) => (
+
+
+ {/* Phase Header */}
+
+
+
+ {phase.badge}
+
+
+
+ {phase.phase}
+
+
+
+
+ {/* Features Grid */}
+
+ {phase.features.map((feature, index) => {
+ const Icon = feature.icon;
+ return (
+
+ {/* Icon & Badge */}
+
+
+ {/* Title & Subtitle */}
+
+ {feature.title}
+
+
+ {feature.subtitle}
+
+
+ {/* Description */}
+
+ {feature.description}
+
+
+ {/* Bullet Points */}
+
+ {feature.bullets.map((bullet, bulletIndex) => (
+ -
+
+ {bullet}
+
+ ))}
+
+
+ {/* Hover Accent */}
+
+
+ );
+ })}
+
+
+
+ ))}
+
+ {/* CTA SECTION */}
+
+
+
+
+
+
+ Start Creating Content Today
+
+
+ Don't wait for tomorrow's features. Start using IGNY8's powerful 8-stage pipeline today and scale your content production.
+
+
+ {renderCta(
+ { label: "Get Started Free", href: "https://app.igny8.com/signup" },
+ "px-8 py-4 bg-white text-[var(--color-primary)] rounded-lg font-semibold hover:bg-gray-100 transition-colors shadow-lg text-lg"
+ )}
+ {renderCta(
+ { label: "View Pricing", href: "/pricing" },
+ "px-8 py-4 bg-white/10 backdrop-blur-sm text-white rounded-lg font-semibold hover:bg-white/20 transition-colors border border-white/20 text-lg"
+ )}
+
+
+
+
+ >
+ );
+};
+
+export default Upcoming;