-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.jsx
61 lines (60 loc) · 2.18 KB
/
page.jsx
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import { Button } from "@/components/ui/button";
import { FiDownload } from "react-icons/fi";
//components
import Social from "@/components/ui/Social";
import Photo from "@/components/ui/Photo";
import Stats from "@/components/ui/Stats";
const Home = () => {
return (
<section className="h-full">
<div className="container mx-auto h-full">
<div
className="flex mx-12 my-5 flex-col xl:flex-row items-center justify-between
xl:pt-8 xl:pb-24"
>
{/*text*/}
<div className="text-center xl:text-left order-2 xl:order-none">
<span className="text-xl">Software Developer</span>
<h1 className="h1">
Hello I'm <br />{" "}
</h1>
<h1 className="h2">
<span className="text-accent">Shivansh Kaushik</span>
</h1>
<p className="max-w-[500px] mb-9 text-white/80">
I excel at crafting elegant digital experiences and I am
proficient in various programming languages and technologies.
</p>
{/*btn and socials*/}
<div className="flex flex-col xl:flex-row items-center gap-8">
<a href="https://drive.google.com/file/d/1JEGKdvmSuS8jQAIaivUw1qtpT5143beZ/view?usp=sharing" >
<Button
variant="outline"
size="lg"
className="uppercase flex items-center gap-2"
>
<span>Download CV</span>
<FiDownload className="text-xl" />
</Button>
</a>
<div className="mb-8 xl:mb-0">
<Social
containerStyles="flex gap-6"
iconStyles="w-9 h-9 border border-accent rounded-full
flex justify-center items-center text-accent text-base
hover:bg-accent hover:text-primary hover:transition-all duration-500"
/>
</div>
</div>
</div>
{/*photo*/}
<div className="order-1 xl:order-none mb-8 xl:mb-0">
<Photo />
</div>
</div>
</div>
<Stats />
</section>
);
};
export default Home;