diff --git a/examples/nextjs-pages/src/pages/_app.tsx b/examples/nextjs-pages/src/pages/_app.tsx index a32fea53..f7e9ba04 100644 --- a/examples/nextjs-pages/src/pages/_app.tsx +++ b/examples/nextjs-pages/src/pages/_app.tsx @@ -7,6 +7,7 @@ import { Inter } from "next/font/google"; const inter = Inter({ subsets: ["latin"] }); +/** Default app */ export default function App({ Component, pageProps }: AppProps) { return ( <> diff --git a/examples/nextjs-pages/src/pages/_document.tsx b/examples/nextjs-pages/src/pages/_document.tsx index b2fff8b4..a78ba90d 100644 --- a/examples/nextjs-pages/src/pages/_document.tsx +++ b/examples/nextjs-pages/src/pages/_document.tsx @@ -1,5 +1,6 @@ import { Html, Head, Main, NextScript } from "next/document"; +/** Custom document */ export default function Document() { return ( diff --git a/examples/nextjs-pages/src/pages/index.tsx b/examples/nextjs-pages/src/pages/index.tsx index 0b1b57a9..029b8167 100644 --- a/examples/nextjs-pages/src/pages/index.tsx +++ b/examples/nextjs-pages/src/pages/index.tsx @@ -2,6 +2,7 @@ import Head from "next/head"; import { LandingPage } from "@repo/shared/dist/server"; import { Demo } from "@repo/shared"; +/** Landing page */ export default function Home() { return ( <> diff --git a/packages/shared/src/server/layout/layout.tsx b/packages/shared/src/server/layout/layout.tsx index 3a06dd1a..004f10d3 100644 --- a/packages/shared/src/server/layout/layout.tsx +++ b/packages/shared/src/server/layout/layout.tsx @@ -1,4 +1,4 @@ -import { HTMLProps, ReactNode } from "react"; +import { HTMLProps } from "react"; import styles from "./layout.module.scss"; import { ForkMe } from "@mayank1513/fork-me/server"; import config from "@repo/scripts/rebrand.config.json";