diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 6fe4675..d0ff86c 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -1,7 +1,6 @@ @@ -33,7 +32,7 @@ -
+
diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 17430d0..6334a2b 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -4,6 +4,7 @@ title: json.title, icon: json.icon, headline: json.headline, + description: json.description, forge: json.forge, codeberg: json.codeberg, github: json.github, @@ -15,7 +16,6 @@ import Project from './project.svelte'; import Bio from './bio.svelte'; - import ThemeToggle from './theme.svelte'; import * as light from './projects/light.json'; import * as dazzle from './projects/dazzle.json'; @@ -26,9 +26,6 @@ const dazzle_data = json_to_project(dazzle); const bonfire_data = json_to_project(bonfire); const hikari_data = json_to_project(hikari); - - const lorem_ipsum = - 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum';
- +
- +
- +
- +
@@ -74,18 +71,12 @@

- - - - - -

- CONTACT :D + CONTACT

@@ -97,10 +88,6 @@
-

Light Roxanna

-

Software Engineer

- -

- {lorem_ipsum} +

Hello, I'm Sara Roxanna

+

+ A C++ specialist and bibliophile with ardent interest + for + large-scale + projects.
+ Accumulating 5+ years of experience through countless failures, many sleepless nights and enough + caffeine, I've turned myself into a pickle. Are you still reading this? Wow, check out my...

diff --git a/src/routes/project.svelte b/src/routes/project.svelte index 44669d5..8a4d400 100644 --- a/src/routes/project.svelte +++ b/src/routes/project.svelte @@ -7,6 +7,7 @@ title: string | undefined; icon: string; headline: string; + description: string; forge: string | undefined; codeberg: string | undefined; github: string | undefined; @@ -22,6 +23,7 @@ title: '', icon: '', headline: '', + description: '', forge: '', codeberg: '', github: '', @@ -30,9 +32,7 @@ gallery: undefined }; - export let description: string; - - let expanded = false; // 0: collapsed, 1: description, 2: gallery, 3: source code + let expanded = false; import { slide } from 'svelte/transition'; @@ -85,7 +85,7 @@ {#if expanded}

- {description} + {data.description}

{#if data.gallery} @@ -100,10 +100,6 @@
{/if} -
- -
-

diff --git a/src/routes/projects/bonfire.json b/src/routes/projects/bonfire.json index 95d6836..d17ef7b 100644 --- a/src/routes/projects/bonfire.json +++ b/src/routes/projects/bonfire.json @@ -1,7 +1,8 @@ { "title": "Bonfire", "icon": "/signature.svg", - "headline": "You're enjoying its warmth on your eyes! : D", + "headline": "You're looking at it!", + "description": "Bonfire is my portfolio project, which you're looking at right now... it's built with the Svelte framework and lots of love ^^", "forge": "https://git.light7734.com/light7734/bonfire", "codeberg": "https://codeberg.org/light7734/bonfire", "github": "https://github.com/light7734/bonfire", diff --git a/src/routes/projects/dazzle.json b/src/routes/projects/dazzle.json index 2019c63..1878f83 100644 --- a/src/routes/projects/dazzle.json +++ b/src/routes/projects/dazzle.json @@ -1,7 +1,8 @@ { "title": "Dazzle", "icon": "/signature.svg", - "headline": "Best way to learn is to teach, here be my articles.", + "headline": "The best way to learn is to teach.", + "description": "I love teaching! I've learned that it's the most effective way to solidify your knowledge and leave little to no gaps. Dazzle is my personal academy. It delves into topics such as software design, rendering, mathematics and much more! It's just my way of giving back to the community ^~^", "forge": "https://git.light7734.com/light7734/dazzle", "codeberg": "https://codeberg.org/light7734/dazzle", "github": "https://github.com/light7734/dazzle", diff --git a/src/routes/projects/hikari.json b/src/routes/projects/hikari.json index 3d97d4c..227aa1f 100644 --- a/src/routes/projects/hikari.json +++ b/src/routes/projects/hikari.json @@ -1,7 +1,8 @@ { "title": "Hikari", "icon": "/hikari.svg", - "headline": "Toy raytracer written in Rust using Vulkan", + "headline": "Toy raytracer written in Rust.", + "description": "Hikari is a dumb raytracer written by following Peter Shirley's books.", "forge": "https://git.light7734.com/light7734/hikari", "codeberg": "https://codeberg.org/light7734/hikari", "github": "https://github.com/light7734/hikari", diff --git a/src/routes/projects/light.json b/src/routes/projects/light.json index 4944741..0136cc7 100644 --- a/src/routes/projects/light.json +++ b/src/routes/projects/light.json @@ -2,6 +2,7 @@ "title": "Light", "icon": "/light.svg", "headline": "Dependency free, cross-platform and feature-rich 3D game engine.", + "description": "My biggest project ever...", "forge": "https://git.light7734.com/light7734/light", "codeberg": "https://codeberg.org/light7734/light", "github": "https://github.com/light7734/light", diff --git a/static/dazzle_geometry_processing.png b/static/dazzle_geometry_processing.png new file mode 100644 index 0000000..dd26e52 Binary files /dev/null and b/static/dazzle_geometry_processing.png differ