Skip to content

Commit

Permalink
refactor: remove example links from docs layout
Browse files Browse the repository at this point in the history
  • Loading branch information
kleberbaum committed Jan 30, 2025
1 parent dd54682 commit 1203692
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions src/components/AppLayout/DocsLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,18 @@ import MainBreadcrumb from '../navigation/MainBreadcrumb';
import TableOfContent from '../navigation/TableOfContent';
import PageDirectory from '../navigation/page-directory/PageDirectory';

const links = [
{
name: 'Question? Give us feedback',
href: '/contact'
},
{
name: 'Edit this page on Jaen',
href: '/cms/pages'
}
const links: {
name: string;
href: string;
}[] = [
// {
// name: 'Question? Give us feedback',
// href: '/contact'
// },
// {
// name: 'Edit this page on Jaen',
// href: '/cms/pages'
// }
];

interface DocsLayoutProps {
Expand Down

0 comments on commit 1203692

Please sign in to comment.