-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebars.ts
34 lines (32 loc) · 1.04 KB
/
sidebars.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import type { SidebarsConfig } from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
tutorialSidebar: [
{
type: 'html',
value: '<h3>Contents</h3>',
className: 'toc-heading',
},
{ type: 'autogenerated', dirName: '.' }, // Keep this for auto-generated docs
{
type: 'html',
value: '<div class="subscribe-container"><iframe src="https://blog.dataleadership.ai/embed" frameBorder="0" scrolling="no"></iframe></div>',
className: 'subscribe-sidebar',
},
{
type: 'html',
value: `<div class="linkedin-profile">
<img
src="/img/ryanvarley-profile.jpeg"
alt="Ryan Varley Profile Picture"
/>
<p>Written by Ryan Varley</p>
<p>Leader in Data, AI & Engineering</p>
<a href="https://www.linkedin.com/in/ryanvarley/" target="_blank" rel="noopener noreferrer">
<p>Follow me on LinkedIn</p>
</a>
</div>`,
className: 'linkedin-profile-sidebar',
},
],
};
export default sidebars;