Skip to content

Commit 472b8c2

Browse files
committed
provide comment disclaimer
1 parent a26bef1 commit 472b8c2

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

docs/footer.tsx

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,30 @@ function Utterances() {
7979

8080
if (location.pathname === '/') return null;
8181

82-
return <div ref={commentBox} />;
82+
return (
83+
<div>
84+
<hr style={{
85+
marginBottom: '1em',
86+
marginLeft: '1.5em',
87+
marginRight: '1.5em',
88+
borderColor: 'var(--vocs-color_border)'
89+
}} />
90+
<p style={{
91+
marginLeft: '2em',
92+
marginRight: '2em',
93+
fontSize: '0.9em',
94+
fontWeight: 400,
95+
color: 'var(--vocs-color_text2)',
96+
marginTop: '0.5em',
97+
marginBottom: '-0.5em',
98+
textAlign: 'left',
99+
lineHeight: 1.4
100+
}}>
101+
Have a question about this documentation? Leave a comment. Comments unrelated to developing with XMTP will be removed.
102+
</p>
103+
<div ref={commentBox} />
104+
</div>
105+
);
83106
}
84107

85108
export default function Footer() {

0 commit comments

Comments
 (0)