@@ -8,34 +8,37 @@ import Navigation from './components/Navigation'
88import QuantumBackground from './components/QuantumBackground'
99import Footer from './components/Footer'
1010
11- // Lazy load секции ниже fold
11+ // Lazy load sections below fold
12+ const TheoremsSection = lazy ( ( ) => import ( './components/sections/TheoremsSection' ) )
1213const WhyNowSection = lazy ( ( ) => import ( './components/sections/WhyNowSection' ) )
14+ const BenchmarksSection = lazy ( ( ) => import ( './components/sections/BenchmarksSection' ) )
1315const CalculatorSection = lazy ( ( ) => import ( './components/sections/CalculatorSection' ) )
14- const TractionSection = lazy ( ( ) => import ( './components/sections/TractionSection ' ) )
16+ const TechnologySection = lazy ( ( ) => import ( './components/sections/TechnologySection ' ) )
1517const MarketSection = lazy ( ( ) => import ( './components/sections/MarketSection' ) )
18+ const GTMSection = lazy ( ( ) => import ( './components/sections/GTMSection' ) )
19+ const CompetitionSection = lazy ( ( ) => import ( './components/sections/CompetitionSection' ) )
20+ const HLSCompetitionSection = lazy ( ( ) => import ( './components/sections/HLSCompetitionSection' ) )
21+ const RoadmapSection = lazy ( ( ) => import ( './components/sections/RoadmapSection' ) )
22+ const TeamSection = lazy ( ( ) => import ( './components/sections/TeamSection' ) )
23+ const EcosystemSection = lazy ( ( ) => import ( './components/sections/EcosystemSection' ) )
24+ const InvestSection = lazy ( ( ) => import ( './components/sections/InvestSection' ) )
25+ const PhoenixNumberSection = lazy ( ( ) => import ( './components/sections/PhoenixNumberSection' ) )
26+
27+ // Additional sections (lower priority)
28+ const TractionSection = lazy ( ( ) => import ( './components/sections/TractionSection' ) )
1629const MiningSolutionSection = lazy ( ( ) => import ( './components/sections/MiningSolutionSection' ) )
1730const ProductSection = lazy ( ( ) => import ( './components/sections/ProductSection' ) )
1831const FinancialsSection = lazy ( ( ) => import ( './components/sections/FinancialsSection' ) )
1932const BusinessModelSection = lazy ( ( ) => import ( './components/sections/BusinessModelSection' ) )
20- const TechnologySection = lazy ( ( ) => import ( './components/sections/TechnologySection' ) )
2133const BitNetProofSection = lazy ( ( ) => import ( './components/sections/BitNetProofSection' ) )
2234const SU3MiningRealitySection = lazy ( ( ) => import ( './components/SU3MiningRealitySection' ) )
2335const TechAssetsSection = lazy ( ( ) => import ( './components/sections/TechAssetsSection' ) )
2436const CalculatorLogicSection = lazy ( ( ) => import ( './components/sections/CalculatorLogicSection' ) )
25- const BenchmarksSection = lazy ( ( ) => import ( './components/sections/BenchmarksSection' ) )
2637const ScientificFoundationSection = lazy ( ( ) => import ( './components/sections/ScientificFoundationSection' ) )
2738const MilestonesSection = lazy ( ( ) => import ( './components/sections/MilestonesSection' ) )
2839const VisionSection = lazy ( ( ) => import ( './components/sections/VisionSection' ) )
29- const GTMSection = lazy ( ( ) => import ( './components/sections/GTMSection' ) )
30- const CompetitionSection = lazy ( ( ) => import ( './components/sections/CompetitionSection' ) )
31- const HLSCompetitionSection = lazy ( ( ) => import ( './components/sections/HLSCompetitionSection' ) )
32- const RoadmapSection = lazy ( ( ) => import ( './components/sections/RoadmapSection' ) )
33- const TeamSection = lazy ( ( ) => import ( './components/sections/TeamSection' ) )
34- const EcosystemSection = lazy ( ( ) => import ( './components/sections/EcosystemSection' ) )
35- const InvestSection = lazy ( ( ) => import ( './components/sections/InvestSection' ) )
36- const PhoenixNumberSection = lazy ( ( ) => import ( './components/sections/PhoenixNumberSection' ) )
3740
38- // Минимальный fallback для секций
41+ // Minimal fallback for sections
3942const SectionFallback = ( ) => (
4043 < div style = { { minHeight : '50vh' , display : 'flex' , alignItems : 'center' , justifyContent : 'center' } } >
4144 < div style = { { width : '40px' , height : '40px' , border : '3px solid var(--border)' , borderTopColor : 'var(--accent)' , borderRadius : '50%' , animation : 'spin 1s linear infinite' } } />
@@ -48,37 +51,63 @@ export default function App() {
4851 < QuantumBackground />
4952 < Navigation />
5053
51- { /* Above fold - загружаются сразу */ }
54+ { /* Above fold - load immediately */ }
5255 < HeroSection />
53- < ProblemSection />
54- < SolutionSection />
5556
56- { /* Below fold - lazy loading */ }
57+ { /* OPTIMIZED ORDER: Hook (Theorems) → Problem → Solution → Proof → Action */ }
5758 < Suspense fallback = { < SectionFallback /> } >
59+ { /* 1. THEOREMS - Immediate credibility hook (investors leave if no hook in 10s) */ }
60+ < TheoremsSection />
61+
62+ { /* 2. PROBLEM & SOLUTION - Classic pitch flow */ }
63+ < ProblemSection />
64+ < SolutionSection />
65+
66+ { /* 3. WHY NOW - Urgency */ }
5867 < WhyNowSection />
68+
69+ { /* 4. BENCHMARKS - Proof tied to theorems */ }
70+ < BenchmarksSection />
71+
72+ { /* 5. CALCULATOR - ROI focus for $3M seed */ }
5973 < CalculatorSection />
60- < TractionSection />
74+
75+ { /* 6. TECHNOLOGY - Deep dive for technical investors */ }
76+ < TechnologySection />
77+ < BitNetProofSection />
78+
79+ { /* 7. MARKET & GTM - Business case */ }
6180 < MarketSection />
81+ < GTMSection />
82+
83+ { /* 8. COMPETITION - Differentiation */ }
84+ < CompetitionSection />
85+ < HLSCompetitionSection />
86+
87+ { /* 9. ROADMAP - Execution plan */ }
88+ < RoadmapSection />
89+ < MilestonesSection />
90+
91+ { /* 10. TEAM - Trust */ }
92+ < TeamSection />
93+
94+ { /* 11. ECOSYSTEM - Network effects */ }
95+ < EcosystemSection />
96+
97+ { /* 12. ADDITIONAL PROOF SECTIONS */ }
98+ < TractionSection />
6299 < MiningSolutionSection />
63100 < ProductSection />
64101 < FinancialsSection />
65102 < BusinessModelSection />
66- < TechnologySection />
67- < BitNetProofSection />
68103 < SU3MiningRealitySection />
69104 < TechAssetsSection />
70105 < CalculatorLogicSection />
71- < BenchmarksSection />
72106 < ScientificFoundationSection />
73- < MilestonesSection />
74107 < VisionSection />
75- < GTMSection />
76- < CompetitionSection />
77- < HLSCompetitionSection />
78- < RoadmapSection />
79- < TeamSection />
80- < EcosystemSection />
81108 < PhoenixNumberSection />
109+
110+ { /* 13. INVEST - Final CTA */ }
82111 < InvestSection />
83112 </ Suspense >
84113
0 commit comments