We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d9f810 commit aef5416Copy full SHA for aef5416
3 files changed
package.json
@@ -58,7 +58,7 @@
58
"typescript": "^5.5.2"
59
},
60
"peerDependencies": {
61
- "next": "^15.3.5",
+ "next": "^15.3.5 || ^16",
62
"react": "^19.1.0",
63
"react-dom": "^19.1.0"
64
src/styleguide/Layout.tsx
@@ -1,5 +1,6 @@
1
'use client';
2
3
+import './styles.css';
4
import Link from 'next/link';
5
import { useState } from 'react';
6
import { StyleguideContent } from '../types';
src/styleguide/Route.tsx
@@ -2,7 +2,6 @@ import Layout from './Layout';
import { getPageContent } from './utils';
import { StyleguideContent } from 'src/types';
-import './styles.css';
import { notFound } from 'next/navigation';
7
8
type StyleguidePageProps = {
0 commit comments