From 3430f6c8b54cc74d8ab19858f253290d1363d62a Mon Sep 17 00:00:00 2001 From: light7734 Date: Sun, 19 Oct 2025 23:40:22 +0330 Subject: [PATCH] its all coming together --- src/routes/+page.svelte | 97 +++-------------- src/routes/bio.svelte | 52 +++++++-- src/routes/project.svelte | 181 +++++++++++++------------------ src/routes/projects/bonfire.json | 2 + src/routes/projects/dazzle.json | 2 + src/routes/projects/hikari.json | 7 +- src/routes/projects/light.json | 13 ++- static/hikari_raytrace.png | Bin 0 -> 614473 bytes 8 files changed, 152 insertions(+), 202 deletions(-) create mode 100644 static/hikari_raytrace.png diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 7c09236..17430d0 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -2,10 +2,14 @@ function json_to_project(json: any) { return { title: json.title, + icon: json.icon, + headline: json.headline, forge: json.forge, codeberg: json.codeberg, github: json.github, - gitlab: json.gitlab + gitlab: json.gitlab, + docs: json.docs, + gallery: json.gallery }; } @@ -18,29 +22,11 @@ import * as bonfire from './projects/bonfire.json'; import * as hikari from './projects/hikari.json'; - import { Github, Gitlab, Code, GitBranch } from 'lucide-svelte'; const light_data = json_to_project(light); const dazzle_data = json_to_project(dazzle); const bonfire_data = json_to_project(bonfire); const hikari_data = json_to_project(hikari); - const mirrors = [ - { label: 'Github', url: 'https://github.com/light7734/light', iconComponent: Github }, - { label: 'Gitlab', url: 'https://gitlab.com/light7734/light', iconComponent: Gitlab }, - { label: 'Codeberg', url: 'https://codeberg.org/light7734/light', iconComponent: Code } - ]; - - const gallery = [ - 'https://placekittens.com/720/480', - 'https://placekittens.com/720/481', - 'https://placekittens.com/720/482', - 'https://placekittens.com/720/483', - 'https://placekittens.com/720/484', - 'https://placekittens.com/720/484' - ]; - - const features = ['MSAA', 'SSAO', 'PBR Lighting']; - 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'; @@ -48,9 +34,8 @@
-
- +
@@ -66,52 +51,16 @@
- +
- +
- +
- +
@@ -125,27 +74,11 @@

- -
- - -
+ + + + +
diff --git a/src/routes/bio.svelte b/src/routes/bio.svelte index 5109cd1..7974c29 100644 --- a/src/routes/bio.svelte +++ b/src/routes/bio.svelte @@ -1,25 +1,53 @@ +
-
-

LIGHT 7734

-

- {description} -

-
-
author
+ +
+

Light Roxanna

+

Software Engineer

+ +

+ {lorem_ipsum} +

+
diff --git a/src/routes/project.svelte b/src/routes/project.svelte index ad07e9d..44669d5 100644 --- a/src/routes/project.svelte +++ b/src/routes/project.svelte @@ -2,54 +2,37 @@