Some checks failed
No response / noResponse (push) Has been cancelled
CI / Continuous releases (push) Has been cancelled
CI / test-dev (macos-latest) (push) Has been cancelled
CI / test-dev (ubuntu-latest) (push) Has been cancelled
CI / test-dev (windows-latest) (push) Has been cancelled
Maintenance / main (push) Has been cancelled
Scorecards supply-chain security / Scorecards analysis (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
38 lines
1.0 KiB
TypeScript
38 lines
1.0 KiB
TypeScript
import CssBaseline from '@mui/material/CssBaseline';
|
|
import Divider from '@mui/material/Divider';
|
|
import AppTheme from '../shared-theme/AppTheme';
|
|
import AppAppBar from './components/AppAppBar';
|
|
import Hero from './components/Hero';
|
|
import LogoCollection from './components/LogoCollection';
|
|
import Highlights from './components/Highlights';
|
|
import Pricing from './components/Pricing';
|
|
import Features from './components/Features';
|
|
import Testimonials from './components/Testimonials';
|
|
import FAQ from './components/FAQ';
|
|
import Footer from './components/Footer';
|
|
|
|
export default function MarketingPage(props: { disableCustomTheme?: boolean }) {
|
|
return (
|
|
<AppTheme {...props}>
|
|
<CssBaseline enableColorScheme />
|
|
|
|
<AppAppBar />
|
|
<Hero />
|
|
<div>
|
|
<LogoCollection />
|
|
<Features />
|
|
<Divider />
|
|
<Testimonials />
|
|
<Divider />
|
|
<Highlights />
|
|
<Divider />
|
|
<Pricing />
|
|
<Divider />
|
|
<FAQ />
|
|
<Divider />
|
|
<Footer />
|
|
</div>
|
|
</AppTheme>
|
|
);
|
|
}
|