-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLandingPage.js
executable file
·47 lines (40 loc) · 1.88 KB
/
LandingPage.js
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
35
36
37
38
39
40
41
42
43
44
45
46
47
import React, { useEffect } from 'react';
function LandingPage() {
useEffect(() => {
document.body.style.overflowY = 'hidden';
// Clean up the style when the component unmounts
return () => {
document.body.style.overflowY = '';
};
}, []);
return (
<div className="landing-page">
<header className="App-header">
<div className="welcome-message" style={{textAlign: 'center', backgroundColor: 'rgba(100, 200, 200, 0.3)', padding: '1em', borderRadius: '0.5em'}}>
<p style={{fontWeight: 'bold', fontSize: '2em'}}>
Welcome to
<span style={{ color: '#3aa0ac' }}> D</span>
<span style={{ color: '#3aa0ac' }}>E</span>
<span style={{ color: '#3aa0ac' }}>a</span>
<span style={{ color: '#3aa0ac' }}>M</span>
<span style={{ color: '#3aa0ac' }}>O</span>
<span style={{ color: '#3aa0ac' }}>N</span>
</p>
<p>
<span style={{ color: '#3aa0ac' }}><strong> D</strong></span>escendant
<span style={{ color: '#3aa0ac' }}><strong> E</strong></span>quipment
<span style={{ color: '#3aa0ac' }}><strong> a</strong></span>nd
<span style={{ color: '#3aa0ac' }}><strong> M</strong></span>odule
<span style={{ color: '#3aa0ac' }}><strong> O</strong></span>rganizer
<span style={{ color: '#3aa0ac' }}><strong> N</strong></span>exus
</p>
</div>
<p style={{marginTop: '1em'}}>To lookup user Information, enter their Name#ID into the box in the top-right</p>
<p>Zone Rewards can be viewed on the "Zones" page</p>
<p>The Sandbox is a drag-and-drop tool to create your own configurations and share them with others!</p>
<p>If anything breaks or you have suggestions, contact me on Discord: <code>t14d3</code></p>
</header>
</div>
);
}
export default LandingPage;