39 lines
1.1 KiB
TypeScript
39 lines
1.1 KiB
TypeScript
// AUTO-GENERATED shell by per-section-migrate.
|
|
// Section bodies live in ./<PageBase>/sections/<X>.tsx. Edit the section
|
|
// files directly. Non-block content (wrappers, non-inlinable sections) is
|
|
// preserved inline; extracted section blocks become <XSection/> refs.
|
|
|
|
import React from 'react';
|
|
import HeroSection from './HomePage/sections/Hero';
|
|
import ProblemSection from './HomePage/sections/Problem';
|
|
import ArchitectureSection from './HomePage/sections/Architecture';
|
|
import FeaturesSection from './HomePage/sections/Features';
|
|
import MetricsSection from './HomePage/sections/Metrics';
|
|
import TestimonialsSection from './HomePage/sections/Testimonials';
|
|
import FaqSection from './HomePage/sections/Faq';
|
|
import ContactSection from './HomePage/sections/Contact';
|
|
|
|
|
|
import TeamSection from './HomePage/sections/Team';export default function HomePage(): React.JSX.Element {
|
|
return (
|
|
<>
|
|
<HeroSection />
|
|
|
|
<ProblemSection />
|
|
|
|
<ArchitectureSection />
|
|
|
|
<FeaturesSection />
|
|
|
|
<MetricsSection />
|
|
|
|
<TestimonialsSection />
|
|
<TeamSection />
|
|
|
|
<FaqSection />
|
|
|
|
<ContactSection />
|
|
</>
|
|
);
|
|
}
|