MCPcopy Create free account
hub / github.com/developerway/example-react-project / HomePage

Function HomePage

website/pages/index.tsx:11–28  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

9import Head from 'next/head';
10
11const HomePage = () => {
12 return (
13 <>
14 <Head>
15 <title>Example react project in a monorepo</title>
16 <link rel="preconnect" href="https://fonts.googleapis.com" />
17 <link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="true" />
18 <link
19 href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap"
20 rel="stylesheet"
21 />
22 <link rel="icon" type="image/x-icon" href="/favicon.ico" />
23 </Head>
24
25 <Layout topBar={<TopBar />} sidebar={<Sidebar />} page={<Board />} />
26 </>
27 );
28};
29
30export default HomePage;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected