Skip to content

Commit

Permalink
feat: disclaimer and noindex tag
Browse files Browse the repository at this point in the history
  • Loading branch information
0xtiti committed May 7, 2024
1 parent f9bb01d commit d764e5f
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 1 deletion.
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

0 comments on commit d764e5f

Please sign in to comment.