24 lines
886 B
JavaScript
24 lines
886 B
JavaScript
|
|
import * as React from 'react';
|
||
|
|
import Head from 'docs/src/modules/components/Head';
|
||
|
|
import ProfileDashboardTemplate from 'docs/data/joy/getting-started/templates/profile-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 />
|
||
|
|
<ProfileDashboardTemplate />
|
||
|
|
</React.Fragment>
|
||
|
|
);
|
||
|
|
}
|