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
40 lines
1.3 KiB
TypeScript
40 lines
1.3 KiB
TypeScript
import Divider from '@mui/material/Divider';
|
|
import AppHeader from 'docs/src/layouts/AppHeader';
|
|
import AppFooter from 'docs/src/layouts/AppFooter';
|
|
import AboutHero from 'docs/src/components/about/AboutHero';
|
|
import OurValues from 'docs/src/components/about/OurValues';
|
|
import Team from 'docs/src/components/about/Team';
|
|
import HowToSupport from 'docs/src/components/about/HowToSupport';
|
|
import AboutEnd from 'docs/src/components/about/AboutEnd';
|
|
import Head from 'docs/src/modules/components/Head';
|
|
import BrandingCssVarsProvider from 'docs/src/BrandingCssVarsProvider';
|
|
import AppHeaderBanner from 'docs/src/components/banner/AppHeaderBanner';
|
|
|
|
export default function About() {
|
|
return (
|
|
<BrandingCssVarsProvider>
|
|
<Head
|
|
title="About us - MUI"
|
|
description="MUI is a 100% remote globally distributed team, supported by a community of thousands
|
|
of developers all across the world."
|
|
card="/static/social-previews/about-preview.jpg"
|
|
/>
|
|
<AppHeaderBanner />
|
|
<AppHeader />
|
|
<main id="main-content">
|
|
<AboutHero />
|
|
<Divider />
|
|
<OurValues />
|
|
<Divider />
|
|
<Team />
|
|
<Divider />
|
|
<HowToSupport />
|
|
<Divider />
|
|
<AboutEnd />
|
|
<Divider />
|
|
</main>
|
|
<AppFooter />
|
|
</BrandingCssVarsProvider>
|
|
);
|
|
}
|