Skip to content

Commit

Permalink
fix image paths + prop links
Browse files Browse the repository at this point in the history
  • Loading branch information
icanc0 committed Feb 10, 2024
1 parent ed89d57 commit 7d66847
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions src/lib/Footer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { base } from '$app/paths';
Let's build the future, one reality at a time.
</div>
<div class="flex flex-row">
<LightButton >
<LightButton url="/contact">
JOIN US
</LightButton>
</div>
Expand All @@ -33,13 +33,13 @@ import { base } from '$app/paths';
<a href="{ base }/" class="">
Home
</a>
<a href="{ base }/" class="">
<a href="{ base }/projects" class="">
Projects
</a>
<a href="{ base }/" class="">
<a href="{ base }/about" class="">
About
</a>
<a href="{ base }/" class="">
<a href="{ base }/contact" class="">
Contact
</a>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/lib/ProjectCard.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<div class="flex flex-col group relative space pb-5">
<div class="aspect-h-8 aspect-w-16 relative">
<img src="{ base }{ img? '/' : img }" alt="" class="w-full object-cover rounded-3xl group-hover:scale-[0.99] duration-500 ">
<img src="{ base }{ img? img : '/' }" alt="" class="w-full object-cover rounded-3xl group-hover:scale-[0.99] duration-500 ">

<div class="transition rounded-full w-16 h-6 absolute left-8 bottom-10 top-auto bg-gray-300 justify-center items-center flex p-5 -rotate-45 group-hover:rotate-0 group-hover:h-16 group-hover:-translate-y-2 duration-500">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" class="w-6 h-6 stroke-white">
Expand Down
14 changes: 7 additions & 7 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,16 @@


<div class="flex flex-col space-y-2 lg:px-10">
<ProjectCard class="" img="/RealityFromScratchHeadset.jpg" title="Reality From Scratch">
<ProjectCard img="/RealityFromScratchHeadset.jpg" title="Reality From Scratch">
The modular, open-source VR headset for research and experimentation.
</ProjectCard>
<ProjectCard class="" img="/NorthStarHeadset.jpg" title="Project Northstar-DIY" >
<ProjectCard img="/NorthStarHeadset.jpg" title="Project Northstar-DIY" >
A fully self-contained AR device based on Ultraleap's Project North Star.
</ProjectCard>
<ProjectCard class="" img="/DeepFocus.webp" title="DeepFocus (Redux)" >
<ProjectCard img="/DeepFocus.webp" title="DeepFocus (Redux)" >
Generating training data for ML-based real-time defocus blur.
</ProjectCard>
<ProjectCard class="" img="/EyeTrackVR.webp" title="Eye Tracking" >
<ProjectCard img="/EyeTrackVR.webp" title="Eye Tracking" >
Pupil tracking based on EyeTrackVR with ML & computer vision.
</ProjectCard>
</div>
Expand Down Expand Up @@ -78,21 +78,21 @@
<div class="py-8 font-light lg:text-2xl">
Project Topics
</div>
<FlatDropDown title="VR Hardware">
<FlatDropDown title="VR Hardware" isOpen=false>
Rotational Tracking: IMU-based, built with Arduino, centralized PCB design
<br><br>
Positional Tracking: Roomscale tracking with LEDs (PSMoveServiceEx), inside-out tracking with computer vision (VIO)
<br><br>
Display Systems Research: Lens technologies, varifocal optics with eye-tracking and natural defocus blur in real-time game engines
</FlatDropDown>
<FlatDropDown title="AR Hardware">
<FlatDropDown title="AR Hardware" isOpen=false>
Inspired by Project North Star: Side-projected display, optical combiners
<br><br>
zig on the RP2040, Intel RealSense T265, custom MCP4021 libraries
<br><br>
Ultraleap-based hand trackingg
</FlatDropDown>
<FlatDropDown title="XR Software & Games">
<FlatDropDown title="XR Software & Games" isOpen=false>
Varifocal: A story-based VR game set in a post-apocalyptic city where the player navigates through different emotional segments using visors with unique shades.
<br><br>
The objective is to explore, solve puzzles, and free fragmented individuals stuck in time, gaining emotional fragments.
Expand Down

0 comments on commit 7d66847

Please sign in to comment.