+
hello@rython.dev
{ExperienceTabContent()}
{EducationTabContent()}
{ExtracurricularTabContent()}
diff --git a/src/components/global/Card.astro b/src/components/global/Card.astro
index a3d70a6..44fc0fb 100644
--- a/src/components/global/Card.astro
+++ b/src/components/global/Card.astro
@@ -63,7 +63,7 @@ const {
.card {
/* background: #1c1c1c; */
/* background: linear-gradient(135deg, rgb(38, 38, 38)#101010 20%, 100%); */
- box-shadow: 0 10px 25px 10px var(--shadowColor);
+ box-shadow: 0 8px 20px 2px var(--shadowColor);
padding: 0.5rem;
}
diff --git a/src/components/home/Intro.astro b/src/components/home/Intro.astro
index eb8008a..58cc14e 100644
--- a/src/components/home/Intro.astro
+++ b/src/components/home/Intro.astro
@@ -9,9 +9,9 @@ import { Image } from "astro:assets";
-
+
diff --git a/src/components/images/projects/coworking-guide-light.webp b/src/components/images/projects/coworking-guide-light.webp
new file mode 100644
index 0000000..52d49ce
Binary files /dev/null and b/src/components/images/projects/coworking-guide-light.webp differ
diff --git a/src/components/images/projects/portfolio-roast-bot-light.webp b/src/components/images/projects/portfolio-roast-bot-light.webp
new file mode 100644
index 0000000..2d7274e
Binary files /dev/null and b/src/components/images/projects/portfolio-roast-bot-light.webp differ
diff --git a/src/components/projects/Project.astro b/src/components/projects/Project.astro
index 040e49d..91365c8 100644
--- a/src/components/projects/Project.astro
+++ b/src/components/projects/Project.astro
@@ -4,6 +4,7 @@ import { Image } from "astro:assets";
interface Props {
position?: "left" | "right";
image?: ImageMetadata;
+ image_light?: ImageMetadata;
alt?: string;
href: string;
title: string;
@@ -14,6 +15,7 @@ interface Props {
const {
image,
+ image_light,
alt,
href,
title,
@@ -40,17 +42,41 @@ const leftProject = position == "left";
+ {image_light && (
+ <>
+
+
+ >
+ )}
>
)
}
@@ -61,7 +87,7 @@ const leftProject = position == "left";
{label}
@@ -70,7 +96,7 @@ const leftProject = position == "left";
{label}
@@ -106,6 +132,44 @@ const leftProject = position == "left";
diff --git a/src/pages/index.astro b/src/pages/index.astro
index eb3a8be..f2f9c64 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -34,7 +34,7 @@ import { Button } from "@/components/ui/moving-border";