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
24 lines
880 B
JavaScript
24 lines
880 B
JavaScript
import * as React from 'react';
|
|
import Head from 'docs/src/modules/components/Head';
|
|
import OrderDashboardTemplate from 'docs/data/joy/getting-started/templates/order-dashboard/App';
|
|
import { NextNProgressBar } from 'docs/src/modules/components/AppFrame';
|
|
|
|
export default function OrderDashboard() {
|
|
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" />
|
|
{/* eslint-disable-next-line @next/next/no-page-custom-font */}
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
</Head>
|
|
<NextNProgressBar />
|
|
<OrderDashboardTemplate />
|
|
</React.Fragment>
|
|
);
|
|
}
|