diff --git a/examples/pages-router/src/pages/_app.tsx b/examples/pages-router/src/pages/_app.tsx index 6266d7b3..3f912910 100644 --- a/examples/pages-router/src/pages/_app.tsx +++ b/examples/pages-router/src/pages/_app.tsx @@ -5,9 +5,8 @@ import "../styles/global.css"; import { Inter } from "next/font/google"; import Link from "next/link"; import { Card, Cards, LandingPage, Layout, type CardProps } from "@repo/shared/dist/server"; -import { ThemeController, PageNavigatorCard, Header } from "@repo/shared"; +import { ThemeController, PageNavigatorCard, Header, ScopedThemes } from "@repo/shared"; import { ColorSwitch } from "nextjs-themes/color-switch"; -import { ScopedThemes } from "@repo/shared"; import { MouseTrail } from "react-webgl-trails"; const inter = Inter({ subsets: ["latin"] }); diff --git a/examples/tailwind/src/app/_components/card.tsx b/examples/tailwind/src/app/_components/card.tsx index c2169371..f5fc8954 100644 --- a/examples/tailwind/src/app/_components/card.tsx +++ b/examples/tailwind/src/app/_components/card.tsx @@ -4,6 +4,7 @@ interface CardProps { text: string; } +/** Card */ export default function Card({ href, title, text }: CardProps) { return (

- {title + " "} + {`${title} `} -> diff --git a/examples/tailwind/src/app/layout.tsx b/examples/tailwind/src/app/layout.tsx index 3ff78f8c..6c6fa42e 100644 --- a/examples/tailwind/src/app/layout.tsx +++ b/examples/tailwind/src/app/layout.tsx @@ -11,6 +11,7 @@ export const metadata: Metadata = { description: "Generated by Mayank ", }; +/** Layout */ export default function RootLayout({ children }: { children: React.ReactNode }) { return ( diff --git a/examples/tailwind/src/app/page.tsx b/examples/tailwind/src/app/page.tsx index d05eabc4..dab95eee 100644 --- a/examples/tailwind/src/app/page.tsx +++ b/examples/tailwind/src/app/page.tsx @@ -3,6 +3,7 @@ import Image from "next/image"; import { ColorSwitch } from "nextjs-themes"; import Card from "./_components/card"; +/** Home */ export default function Home() { return (