From 6084e5c31a3d74088d01898e43310d6b352df467 Mon Sep 17 00:00:00 2001 From: liyunze <50455574+liyunze-coding@users.noreply.github.com> Date: Sat, 2 Aug 2025 18:14:51 +1000 Subject: [PATCH] update in progress --- src/components/global/Card.astro | 48 +++-- src/components/home/Greeting.svelte | 67 +++++++ src/components/home/Intro.astro | 77 ++++++++ src/components/home/IntroComponent.svelte | 183 -------------------- src/components/skills/SkillsComponent.astro | 16 +- src/components/socials/Socials.svelte | 22 --- src/pages/index.astro | 25 +-- 7 files changed, 191 insertions(+), 247 deletions(-) create mode 100644 src/components/home/Greeting.svelte create mode 100644 src/components/home/Intro.astro delete mode 100644 src/components/home/IntroComponent.svelte diff --git a/src/components/global/Card.astro b/src/components/global/Card.astro index 6da89e8..e3d07cd 100644 --- a/src/components/global/Card.astro +++ b/src/components/global/Card.astro @@ -1,13 +1,15 @@ --- -interface Props { +type Props = { + href?: string; primaryColor: string; bgColor?: string; scaleOnHover?: boolean; pixelHeight?: string; className?: string; -} +}; const { + href, primaryColor, bgColor = "#282828", scaleOnHover = false, @@ -16,11 +18,34 @@ const { } = Astro.props; --- -
-
-
- I was born and raised in Malaysia, currently studying my Bachelor's
- in Computer Science in Australia! I speak fluent in Mandarin Chinese
- and English.
-
- I'm passionate about developing open source projects that benefit others,
- and I have extensive experience in leadership roles.
-
- I'm also
- well-connected with various Twitch streamers and content
- creators, thanks to prominent projects that have had a positive impact on
- the streaming community. I'm strongly motivated in the fields of
- web development, computer vision and
- data science.
-
-