-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
front page & contact fixes + route escape
- Loading branch information
Showing
20 changed files
with
191 additions
and
118 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<style global lang="postcss"> | ||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
</style> | ||
|
||
<script lang="ts"> | ||
import NavBar from "$lib/NavBar.svelte"; | ||
import { DarkMode } from "$lib/States"; | ||
</script> | ||
|
||
|
||
<div class:dark={$DarkMode}> | ||
<NavBar></NavBar> | ||
<div> | ||
<slot></slot> | ||
</div> | ||
</div> |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<script lang="ts"> | ||
import LightButton from '$lib/LightButton.svelte'; | ||
import HoverableExternalLink from '$lib/HoverableExternalLink.svelte'; | ||
import { base } from '$app/paths'; | ||
</script> | ||
|
||
|
||
<div class="text-black p-8"> | ||
|
||
<div class="flex flex-col space-y-10 lg:space-y-0 lg:flex-row "> | ||
|
||
|
||
<div class="flex flex-col mx-5 basis-1/2"> | ||
<div class="pb-8 font-light"> | ||
Contact | ||
</div> | ||
<div class="text-black text-6xl lg:text-7xl pb-8"> | ||
Let's build the future, one reality at a time. | ||
</div> | ||
<div class="flex flex-row"> | ||
<LightButton url="/contact"> | ||
JOIN US | ||
</LightButton> | ||
</div> | ||
</div> | ||
|
||
|
||
<div class="flex flex-row basis-1/2 text-black"> | ||
|
||
<div class="flex flex-col mx-10 space-y-5 min-w-50 basis-1/2"> | ||
<HoverableExternalLink url="https://discord.com/invite/kwU8yMYDqJ"> | ||
Discord | ||
</HoverableExternalLink> | ||
<HoverableExternalLink url="https://github.com/kennynahh/uw-reality-labs"> | ||
Github | ||
</HoverableExternalLink> | ||
<HoverableExternalLink url="https://www.linkedin.com/company/uw-reality-labs"> | ||
</HoverableExternalLink> | ||
<HoverableExternalLink url="https://www.instagram.com/uwrealitylabs/"> | ||
</HoverableExternalLink> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
|
||
<div class="text-gray-400 pt-20"> | ||
© 2024 UW Reality Labs | ||
</div> | ||
</div> |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export const prerender = true; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.