-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLandingPage.tsx
35 lines (33 loc) · 1.05 KB
/
LandingPage.tsx
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
import LoginPanel from "@/components/LoginPanel";
import SuggestionsPanel from "@/components/SuggestionsPanel/SuggestionsPanel";
import { Link } from "react-router-dom";
const LandingPage = () => {
return (
<div className="h-screen font-bold text-white bg-idk font-rust-like">
<header className='flex justify-between p-4 text-3xl '>
{/* logo? */}
<h1 className='text-5xl'>
Welcome to the resurected rust app
</h1>
<Link to='/dev'>Dev hre</Link>
</header>
<main className="px-12 py-2">
<div className="flex flex-col items-start gap-4 pl-32 text-4xl mt-60">
{/* todo: finalize flow, which menu options should be visible before login etc*/}
<LoginPanel />
<button className="mt-12">
SPIN WHEEL
</button>
<button>
COMPLETED QUESTS
</button>
<SuggestionsPanel />
<button className="mt-12">
SETTINGS
</button>
</div>
</main>
</div>
);
}
export default LandingPage;