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
23 lines
768 B
JavaScript
23 lines
768 B
JavaScript
import * as React from 'react';
|
|
import Head from 'docs/src/modules/components/Head';
|
|
import TeamApp from 'docs/data/joy/getting-started/templates/framesx-web-blocks/App';
|
|
import { NextNProgressBar } from 'docs/src/modules/components/AppFrame';
|
|
|
|
export default function Team() {
|
|
return (
|
|
<React.Fragment>
|
|
<Head>
|
|
<meta name="robots" content="noindex,nofollow" />
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="true" />
|
|
<link
|
|
href={`https://fonts.googleapis.com/css2?family=Inter:opsz@8..144&display=swap`}
|
|
rel="stylesheet"
|
|
/>
|
|
</Head>
|
|
<NextNProgressBar />
|
|
<TeamApp />
|
|
</React.Fragment>
|
|
);
|
|
}
|