Complete frontend reference implementation: - Landing page (7 sections, responsive, animated) - Marketing Intelligence Report (11 sections, VIEW Plastic Surgery demo) - Marketing Execution Plan (8 sections, branding/channel/calendar) - Content Studio wizard (channel → strategy → sound → generate) - Channel Connect page (7 platform OAuth flows) - Distribution page (YouTube publish flow) - Performance Dashboard (KPI, funnel, heatmap, trends) - PDF export (section-based, no mid-content splits) - Design system (pastel palette, filled icons, Pretendard/Playfair) - Page navigator (landing ↔ report ↔ plan) - Asset upload (drag & drop, image/video/text) Docs: PRD v2.0, DESIGN_SYSTEM.md, API_CONNECTORS.md Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
22 lines
532 B
TypeScript
22 lines
532 B
TypeScript
import Hero from '../components/Hero';
|
|
import TargetAudience from '../components/TargetAudience';
|
|
import Problems from '../components/Problems';
|
|
import Solution from '../components/Solution';
|
|
import Modules from '../components/Modules';
|
|
import UseCases from '../components/UseCases';
|
|
import CTA from '../components/CTA';
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<main>
|
|
<Hero />
|
|
<TargetAudience />
|
|
<Problems />
|
|
<Solution />
|
|
<Modules />
|
|
<UseCases />
|
|
<CTA />
|
|
</main>
|
|
);
|
|
}
|