File tree Expand file tree Collapse file tree 8 files changed +14
-9
lines changed
Expand file tree Collapse file tree 8 files changed +14
-9
lines changed Original file line number Diff line number Diff line change 1818
1919body {
2020 color : rgb (var (--foreground-rgb ));
21- background-color : rgb (var (--background-start-rgb ));
21+ background : linear-gradient (
22+ to bottom,
23+ transparent,
24+ rgb (var (--background-end-rgb ))
25+ )
26+ rgb (var (--background-start-rgb ));
2227}
2328
2429@layer utilities {
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ export default function Home() {
1818 } , [ ] ) ;
1919
2020 return (
21- < div className = "font-sans" >
21+ < div className = "font-sans bg-black " >
2222 < HomeScreen />
2323 < About />
2424 < Experience />
Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ import { HiMiniBellAlert } from "react-icons/hi2";
77
88const About = ( ) => {
99 return (
10- < div className = "max-w-7xl mx-auto px-4" >
10+ < div className = " max-w-7xl mx-auto px-4" >
1111 < div className = "px-4" >
12- < h2 className = "md:text-4xl text-2xl lg:text-4xl font-bold text-left pb-12 xl:pl-0 lg:mb-0 sm:mb-0 " >
12+ < h2 className = "md:text-4xl text-2xl lg:text-4xl font-bold text-left pb-12 xl:pl-0 lg:mb-0 sm:mb-0 text-white " >
1313 About me
1414 </ h2 >
1515 </ div >
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ export function Article() {
1616 return (
1717 < div className = "max-w-7xl mx-auto px-4 mt-32 pb-20 overflow-hidden font-medium" >
1818 < div className = "px-4" >
19- < h2 className = "md:text-4xl text-2xl lg:text-4xl font-bold text-left xl:pl-0 lg:mb-0 lg:pl-5 sm:mb-0 sm:pl-2" >
19+ < h2 className = "md:text-4xl text-2xl lg:text-4xl font-bold text-left xl:pl-0 lg:mb-0 lg:pl-5 sm:mb-0 sm:pl-2 text-white " >
2020 Articles
2121 </ h2 >
2222 </ div >
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ const ContactForm = () => {
2424 < div className = "flex flex-col items-start w-full sm:flex-row sm:header-container" >
2525 < div className = "title-box" >
2626 < p
27- className = "text"
27+ className = "text text-white "
2828 style = { { width : "max-content" , marginRight : "0.8rem" } }
2929 >
3030 I'm open for
Original file line number Diff line number Diff line change @@ -311,7 +311,7 @@ export function Experience() {
311311 return (
312312 < div className = "max-w-7xl mx-auto px-4 mt-20 " >
313313 < div className = "px-4" >
314- < h2 className = "md:text-4xl text-2xl lg:text-4xl font-bold text-left pb-12 xl:pl-0 lg:mb-0 sm:mb-0 " >
314+ < h2 className = "md:text-4xl text-2xl lg:text-4xl font-bold text-left pb-12 xl:pl-0 lg:mb-0 sm:mb-0 text-white " >
315315 Experience
316316 </ h2 >
317317 </ div >
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ export default function HomeScreen() {
1717 < div className = "h-screen " >
1818 { /* home screen */ }
1919 < Footer />
20- < div className = "h-screen w-full bg-black flex flex-col items-center justify-center overflow-hidden rounded-md " >
20+ < div className = "h-screen w-full bg-black flex flex-col items-center justify-center overflow-hidden" >
2121 < h1 className = "md:text-5xl text-2xl lg:text-6xl font-bold text-center text-white relative z-20 mt-30" >
2222 < div className = "flex header-container" >
2323 < div className = "subtitle-box " >
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ const ThreeDCard = () => {
5252 return (
5353 < div className = "max-w-7xl mx-auto px-4 mt-20" >
5454 < div className = "px-4" >
55- < h2 className = "md:text-4xl text-2xl lg:text-4xl font-bold text-left pb-12" >
55+ < h2 className = "md:text-4xl text-2xl lg:text-4xl font-bold text-left pb-12 text-white " >
5656 Projects
5757 </ h2 >
5858 </ div >
You can’t perform that action at this time.
0 commit comments