Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/theme/Banner/index.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import React from 'react';

export default function BannerIndex() {
return (
<div className="fixed bottom-0 z-50 w-screen bg-sky-300 p-2 text-center text-sm text-gray-900 max-sm:bottom-2">
This repository is under review for potential modification in compliance with Administration
directives.
</div>
);
}
14 changes: 14 additions & 0 deletions src/theme/Layout/index.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import React from 'react';
// eslint-disable-next-line import/no-unresolved
import OriginalLayout from '@theme-original/Layout';
import BannerIndex from '../Banner';

export default function Layout(props) {
return (
<>
{/* eslint-disable-next-line react/jsx-props-no-spreading */}
<OriginalLayout {...props} />
<BannerIndex />
</>
);
}
Loading