File tree Expand file tree Collapse file tree 7 files changed +10
-10
lines changed Expand file tree Collapse file tree 7 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ const AltHeroSection = () => {
5
5
return (
6
6
< div className = "flex flex-col items-center justify-center" >
7
7
< div className = "my-16 flex flex-col items-center px-3 pb-6 sm:mb-20 sm:mt-20" >
8
- < h1 className = "mb-16 text-center text-4xl font-black dark:text-primary-400 md:w-3/4 md:text-7xl lg:text-9xl" >
8
+ < h1 className = "mb-16 text-center text-4xl font-black md:w-3/4 md:text-7xl lg:text-9xl dark:text-primary-400 " >
9
9
FullStack Web Developer
10
10
</ h1 >
11
11
< p className = "text-center text-xl text-dark-900 dark:text-white" >
Original file line number Diff line number Diff line change @@ -24,12 +24,12 @@ const BackToTop = () => {
24
24
25
25
return (
26
26
< div
27
- className = "animate-slideLeft fixed bottom-6 right-0 z-50 w-14 rounded-l-full bg-red-500 shadow-lg"
27
+ className = "fixed bottom-6 right-0 z-50 w-14 animate-slideLeft rounded-l-full bg-red-500 shadow-lg"
28
28
hidden = { ! visible }
29
29
>
30
30
< button
31
31
onClick = { handleClick }
32
- className = "animate-fadeIn grid h-10 w-10 place-content-center rounded-full p-2 text-2xl text-white"
32
+ className = "grid h-10 w-10 animate-fadeIn place-content-center rounded-full p-2 text-2xl text-white"
33
33
>
34
34
< FontAwesomeIcon icon = { faArrowCircleUp } />
35
35
</ button >
Original file line number Diff line number Diff line change @@ -14,11 +14,11 @@ const ImageModal = ({
14
14
return (
15
15
< >
16
16
< div className = "fixed inset-0 h-screen w-screen bg-black/50 backdrop-blur-[2px]" />
17
- < div className = "fixed left-1/2 top-1/2 z-10 w-[90%] -translate-x-1/2 -translate-y-1/2 rounded-lg bg-white px-2 py-6 dark:bg-dark-500 md:w-4/5 md:px-4 lg:w-2/5" >
17
+ < div className = "fixed left-1/2 top-1/2 z-10 w-[90%] -translate-x-1/2 -translate-y-1/2 rounded-lg bg-white px-2 py-6 md:w-4/5 md:px-4 lg:w-2/5 dark:bg-dark-500 " >
18
18
< div className = "relative grid grid-cols-1 gap-4" >
19
19
< FontAwesomeIcon
20
20
icon = { faClose }
21
- className = "absolute -right-6 -top-9 h-8 w-8 cursor-pointer rounded-full bg-dark-900 p-1 text-white dark:bg-white dark:text-dark-900 md:-right-8 "
21
+ className = "absolute -right-6 -top-9 h-8 w-8 cursor-pointer rounded-full bg-dark-900 p-1 text-white md:-right-8 dark:bg-white dark:text-dark-900"
22
22
onClick = { onClick }
23
23
/>
24
24
< h2 className = "border-b p-2 font-serif text-xl font-bold" >
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ const NavigationMenu = ({ openState }: { openState: boolean }) => {
62
62
{ /* Mobile Navbar */ }
63
63
< nav
64
64
className = { twJoin (
65
- 'mt-3 grid w-full overflow-hidden rounded-md bg-white-full px-3 transition-[grid-template-rows] duration-300 ease-linear dark:bg-dark-700 md:hidden ' ,
65
+ 'mt-3 grid w-full overflow-hidden rounded-md bg-white-full px-3 transition-[grid-template-rows] duration-300 ease-linear md:hidden dark:bg-dark-700' ,
66
66
! openState ? 'grid-rows-[0fr]' : 'grid-rows-[1fr]' ,
67
67
) }
68
68
>
Original file line number Diff line number Diff line change @@ -12,15 +12,15 @@ const ToggleButton = ({
12
12
return (
13
13
< div
14
14
className = { twJoin (
15
- 'border-primary relative flex h-[27px] w-[54px] cursor-pointer items-center justify-between rounded-full border-2 px-1 transition-colors duration-300 ease-linear' ,
15
+ 'relative flex h-[27px] w-[54px] cursor-pointer items-center justify-between rounded-full border-2 border-primary px-1 transition-colors duration-300 ease-linear' ,
16
16
isDarkMode ? 'bg-primary-400' : 'bg-white' ,
17
17
) }
18
18
onClick = { onClick }
19
19
>
20
20
< FontAwesomeIcon icon = { faMoon } className = "h-4 w-4 text-dark-900" />
21
21
< span
22
22
className = { twJoin (
23
- `bg-primary absolute top-1/2 h-5 w-5 -translate-y-1/2 rounded-full shadow-md transition-all duration-300 ease-linear` ,
23
+ `absolute top-1/2 h-5 w-5 -translate-y-1/2 rounded-full bg-primary shadow-md transition-all duration-300 ease-linear` ,
24
24
! isDarkMode ? 'left-[3px]' : 'left-[28px]' ,
25
25
) }
26
26
/>
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ const Home = () => {
34
34
</ section >
35
35
< section className = "pb-16 pt-24" id = "projects" >
36
36
< Container >
37
- < h2 className = "mb-16 text-center text-4xl font-bold capitalize text-dark-900 drop-shadow-md dark :text-gray-50 lg :text-6xl " >
37
+ < h2 className = "mb-16 text-center text-4xl font-bold capitalize text-dark-900 drop-shadow-md lg :text-6xl dark :text-gray-50 " >
38
38
My recent projects
39
39
</ h2 >
40
40
< RecentWork />
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ const Navigation = () => {
20
20
< button
21
21
data-collapse-toggle = "navbar-default"
22
22
type = "button"
23
- className = "inline-flex items-center justify-center rounded border border-gray-700 p-1 text-sm text-gray-700 hover:text-gray-900 focus:outline-none focus:ring-2 focus:ring-gray-600 dark:border-gray-200 dark:text-gray-200 dark:hover:text-gray-400 md:hidden "
23
+ className = "inline-flex items-center justify-center rounded border border-gray-700 p-1 text-sm text-gray-700 hover:text-gray-900 focus:outline-none focus:ring-2 focus:ring-gray-600 md:hidden dark:border-gray-200 dark:text-gray-200 dark:hover:text-gray-400"
24
24
aria-controls = "navbar-default"
25
25
aria-expanded = "false"
26
26
onClick = { ( ) => setOpen ( ! open ) }
You can’t perform that action at this time.
0 commit comments