-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.tsx
33 lines (31 loc) · 1013 Bytes
/
index.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
import Background from '@/components/Background';
import Navbar from '@/components/Navbar';
const Landing = () => {
return (
<section
className="flex flex-col min-h-screen justify-between py-8 xl:px-24 md:px-10 px-5 relative overflow-hidden"
id="landing"
>
<Navbar />
<Background />
<div className="flex justify-between items-end">
<div>
<div className="font-semibold">
<p>{'<h1>'}</p>
<h2 className="font-black 2xl:text-8xl lg:text-6xl text-4xl">Hello World!</h2>
<p>{'</h1>'}</p>
</div>
<div className="font-semibold mt-10">
<p>{'<h2>'}</p>
<h2 className="font-bold 2xl:text-3xl text-xl">
We are the principal representative body for{' '}
<span className="text-[#3977F9]">UNSW computing</span> students.
</h2>
<p>{'</h2>'}</p>
</div>
</div>
</div>
</section>
);
};
export default Landing;