Skip to content

Commit 1203692

Browse files
committed
refactor: remove example links from docs layout
1 parent dd54682 commit 1203692

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

src/components/AppLayout/DocsLayout.tsx

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,18 @@ import MainBreadcrumb from '../navigation/MainBreadcrumb';
1414
import TableOfContent from '../navigation/TableOfContent';
1515
import PageDirectory from '../navigation/page-directory/PageDirectory';
1616

17-
const links = [
18-
{
19-
name: 'Question? Give us feedback',
20-
href: '/contact'
21-
},
22-
{
23-
name: 'Edit this page on Jaen',
24-
href: '/cms/pages'
25-
}
17+
const links: {
18+
name: string;
19+
href: string;
20+
}[] = [
21+
// {
22+
// name: 'Question? Give us feedback',
23+
// href: '/contact'
24+
// },
25+
// {
26+
// name: 'Edit this page on Jaen',
27+
// href: '/cms/pages'
28+
// }
2629
];
2730

2831
interface DocsLayoutProps {

0 commit comments

Comments
 (0)