-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[skip ci] add front page, finish the workflow segment building
Signed-off-by: Daniel Maricic <daniel@woss.io>
- Loading branch information
Showing
16 changed files
with
147 additions
and
63 deletions.
There are no files selected for viewing
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
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,20 @@ | ||
<script lang="ts"> | ||
let classNames: string = ''; | ||
export { classNames as class }; | ||
</script> | ||
|
||
<div | ||
class={`${classNames} rounded-lg backdrop-blur-xl bg-white/25 shadow-lg border border-solid border-white/30 flex flex-1 justify-center align-middle items-center hover:bg-sky-700 transition duration-150 ease-in-out`} | ||
> | ||
<slot /> | ||
</div> | ||
<!-- | ||
<style> | ||
.frozen-glass-effect { | ||
border-radius: 8px; | ||
backdrop-filter: blur(20px); | ||
background-color: rgba(255, 255, 255, 0.5); | ||
box-shadow: 0 1px 12px rgba(0, 0, 0, 0.25); | ||
border: 1px solid rgba(255, 255, 255, 0.3); | ||
} | ||
</style> --> |
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 |
---|---|---|
@@ -1,10 +1,5 @@ | ||
<script> | ||
// import NavBar from '$src/components/NavBar.svelte'; | ||
import '$src/app.css'; | ||
</script> | ||
|
||
<div> | ||
<!-- <NavBar /> --> | ||
<slot /> | ||
</div> | ||
<slot /> |
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 |
---|---|---|
@@ -1,7 +1,38 @@ | ||
<script lang="ts"> | ||
import Box from '$src/components/Box.svelte'; | ||
import FrostBox from '$src/components/FrostBox.svelte'; | ||
</script> | ||
|
||
<div class="container bg-primary-content p-4"> | ||
<p class="prose">contentttt</p> | ||
<div class="container mx-auto px-4 flex flex-col h-screen p-4 bg-gradient-to-b from-blue-500 to-green-500"> | ||
<div class="flex flex-row flex-wrap justify-between h-72"> | ||
<FrostBox class="m-2 basis-72"> | ||
<a | ||
href="https://anagolay.dev" | ||
target="_blank" | ||
class="text-2xl hover:text-white text-slate-800 h-full w-full flex justify-center align-middle items-center" | ||
> | ||
Anagolay Dev | ||
</a> | ||
</FrostBox> | ||
<FrostBox class="m-2 basis-72 "> | ||
<a | ||
href="https://anagolay.network" | ||
target="_blank" | ||
class="text-2xl hover:text-white text-slate-800 h-full w-full flex justify-center align-middle items-center" | ||
> | ||
Anagolay Network | ||
</a> | ||
</FrostBox> | ||
<FrostBox class="m-2 basis-72 "> | ||
<a | ||
href="https://kelp.digital" | ||
target="_blank" | ||
class="text-2xl hover:text-white text-slate-800 h-full w-full flex justify-center align-middle items-center" | ||
> | ||
Kelp.digital | ||
</a> | ||
</FrostBox> | ||
</div> | ||
<div class="flex justify-center align-middle items-center h-full"> | ||
<img class="w-72 h-72" src="anagolay-white-with-text.png" alt="Anagolay Logo" /> | ||
</div> | ||
</div> |
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
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
Oops, something went wrong.