Skip to content

Commit

Permalink
started with section 1
Browse files Browse the repository at this point in the history
  • Loading branch information
chirag3003 committed Jan 23, 2024
1 parent 401fc73 commit 376d44b
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 4 deletions.
1 change: 1 addition & 0 deletions app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@

:root {
--font: 'Inconsolata', monospace;
--nav: #162121;
}

* {
Expand Down
39 changes: 36 additions & 3 deletions app/page.tsx
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>
);
)
}
2 changes: 1 addition & 1 deletion components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function Navbar() {

return (
<motion.div
className="bg-primary/10 shadow-sm mx-auto fixed left-0 right-0 transition-all"
className="bg-[var(--nav)] shadow-sm mx-auto fixed left-0 right-0 transition-all"
style={{
borderRadius: borderRadius,
top: top,
Expand Down

0 comments on commit 376d44b

Please sign in to comment.