Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: disclaimer and no-index tag #11

Merged
merged 3 commits into from
May 8, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
31 changes: 31 additions & 0 deletions src/components/Disclaimer.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import { styled, Box, Typography } from '@mui/material';

export const Disclaimer = () => {
return (
<Container>
<Typography variant='h1'>
Disclaimer: This application is currently in beta. Please proceed at your own risk. Any funds lost through its
use are non-recoverable.
</Typography>
</Container>
);
};

export const Container = styled(Box)`
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 1rem 1.6rem;
min-height: 4rem;
width: 100%;
margin: 0 auto;
background-color: white;

h1 {
font-size: 1.6rem;
color: #121212;
font-weight: 500;
letter-spacing: 1;
}
`;
1 change: 1 addition & 0 deletions src/components/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
export * from './Theme';
export * from './Disclaimer';
4 changes: 3 additions & 1 deletion src/pages/_document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ export default function MyDocument(props: DocumentProps & DocumentHeadTagsProps)
<meta name='twitter:description' content={descriptionText} />

<meta name='twitter:image' content={bannerImage} />
<meta name='robots' content='index, follow' />

{/* To prevent all search engines from indexing */}
<meta name='robots' content='noindex' />
</Head>
<body>
<Main />
Expand Down
4 changes: 4 additions & 0 deletions src/pages/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
import { Box, CssBaseline, styled } from '@mui/material';

import { Disclaimer } from '~/components';
import { Footer, Header } from '~/containers';

export default function Layout({ children }: { children: React.ReactNode }) {
return (
<>
<CssBaseline />
<Disclaimer />

<MainContent>
<NoScriptMessage>
<p>This website requires JavaScript to function properly.</p>
Expand Down
Loading