generated from chirag3003/next-ts-tailwind-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
401fc73
commit 376d44b
Showing
3 changed files
with
38 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -126,6 +126,7 @@ | |
|
||
:root { | ||
--font: 'Inconsolata', monospace; | ||
--nav: #162121; | ||
} | ||
|
||
* { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,41 @@ | ||
|
||
import { Linkedin, Mail } from 'lucide-react' | ||
import { GitHub, Instagram } from 'react-feather' | ||
|
||
export default function Home() { | ||
return ( | ||
<main className="flex min-h-[300vh] bg-background p-24"> | ||
<main className="flex min-h-[300vh] bg-background"> | ||
<section className="lg:h-screen w-full flex flex-col lg:flex-row items-center px-10 lg:px-0 max-w-7xl mx-auto"> | ||
<div className="text w-full lg:w-1/2"> | ||
<h1 className="text-3xl"> | ||
Hi I{"'"}m <br /> | ||
<span className="text-8xl font-semibold bg-clip-text text-transparent bg-gradient-to-br from-primary to-accent"> | ||
Chirag | ||
</span> | ||
</h1> | ||
<p className="lg:text-lg text-muted mt-4 font-medium max-w-xl"> | ||
Greetings! I'm a passionate full-stack web developer | ||
with over three years of hands-on experience. I thrive | ||
on turning ideas into seamless digital experiences. With | ||
a background in freelancing, I bring a proven track | ||
record of delivering exceptional services to diverse | ||
clients. Let's craft something extraordinary together! | ||
</p> | ||
<div className="links mt-10 flex items-center gap-6"> | ||
<a className="hover:scale-110 cursor-pointer"> | ||
<GitHub height={35} width={35} /> | ||
</a> | ||
<a className="hover:scale-110 cursor-pointer"> | ||
<Linkedin height={35} width={35} /> | ||
</a> | ||
<a className="hover:scale-110 cursor-pointer"> | ||
<Instagram height={35} width={35} /> | ||
</a> | ||
<a className="hover:scale-110 cursor-pointer"> | ||
<Mail height={35} width={35} /> | ||
</a> | ||
</div> | ||
</div> | ||
</section> | ||
</main> | ||
); | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters