Skip to content

Commit

Permalink
Merge pull request #26 from AtomiCloud/pikachu
Browse files Browse the repository at this point in the history
Pikachu
  • Loading branch information
kirinnee authored Nov 9, 2023
2 parents 31314ea + 78012a8 commit 1da59a4
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 14 deletions.
4 changes: 0 additions & 4 deletions scripts/cd/cf_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,10 @@ descope_id="export DESCOPE_ID=\$${branch_upper}_DESCOPE_ID"
descope_secret="export DESCOPE_SECRET=\$${branch_upper}_DESCOPE_SECRET"
auth_secret="export AUTH_SECRET=\$${branch_upper}_AUTH_SECRET"

printenv

eval "$descope_id"
eval "$descope_secret"
eval "$auth_secret"

printenv

# shellcheck disable=SC2153
echo "🔑 Descope ID: ${DESCOPE_ID}"

Expand Down
Binary file added src/lib/assets/cyanprint-social-card.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/lib/assets/favicon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion src/lib/components/custom/main-nav/nav.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
Registry
</a>
<a
href="/documentation"
href="https://docs.cyanprint.dev"
class="text-sm font-medium text-muted-foreground transition-colors hover:text-primary"
>
Documentation
Expand Down
33 changes: 24 additions & 9 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -39,28 +39,43 @@
</script>
<Page notFoundMessage="Main page cannot be found">
<div class="max-w-[1200px] w-5/6 mx-auto">
<div class="relative text-center text-6xl md:text-9xl font-semibold flex flex-col justify-center ">
<div class="w-full h-full absolute
<div class="relative text-center text-6xl md:text-9xl flex flex-col justify-center ">
<div class="w-full h-full absolute font-semibold
transition-all duration-500
bg-[radial-gradient(ellipse_at_center,_var(--tw-gradient-stops))]
bg-opacity-[50%]
{backg} from-0% via-background via-60% to-background to-90% blur opacity-[20%] dark:opacity-[15%]">

</div>
<div class="flex items-center mt-8 md:mt-28 mb-8 w-full">
<div class="flex items-center mt-8 md:mt-28 mb-8 w-full font-semibold">
<div class="mx-auto relative p-2 md:p-4 dark:bg-gradient-to-br bg-gradient-to-tr {textg} inline-block text-transparent bg-clip-text">
Next Generation Templating Engine
</div>
</div>
<div class="relative space-y-2 space-x-0 md:space-y-0 md:space-x-4 my-8 flex flex-col md:flex-row w-full max-w-[1200px] justify-between text-foreground">
<button class="rounded-t-lg md:rounded-lg p-12 cursor-pointer bg-black/5 dark:bg-white/5 backdrop-blur transition hover:scale-[1.02]" on:mouseenter={() => hover="a"} on:mouseleave={() => hover="main"}>
hello
<button class="flex flex-col gap-y-4 items-center justify-center rounded-t-lg md:rounded-lg p-12 cursor-pointer bg-black/5 dark:bg-white/5 backdrop-blur transition hover:scale-[1.02]" on:mouseenter={() => hover="a"} on:mouseleave={() => hover="main"}>
<div class="text-6xl">
Templates
</div>
<a href="https://docs.cyanprint.dev" class="text-3xl font-light p-4">
CREATE
</a>
</button>
<button class="md:rounded-lg p-12 cursor-pointer bg-black/5 dark:bg-white/5 backdrop-blur transition hover:scale-[1.02]" on:mouseenter={() => hover="b"} on:mouseleave={() => hover="main"}>
hello
<button class="flex flex-col gap-y-4 items-center justify-center md:rounded-lg p-12 cursor-pointer bg-black/5 dark:bg-white/5 backdrop-blur transition hover:scale-[1.02]" on:mouseenter={() => hover="b"} on:mouseleave={() => hover="main"}>
<div class="text-6xl">
Processors
</div>
<a href="https://docs.cyanprint.dev" class="text-3xl font-light p-4">
CREATE
</a>
</button>
<button class="rounded-b-lg md:rounded-lg p-12 cursor-pointer bg-black/5 dark:bg-white/5 backdrop-blur transition rounded-lg hover:scale-[1.02]" on:mouseenter={() => hover="c"} on:mouseleave={() => hover="main"}>
hello
<button class="flex flex-col gap-y-4 items-center justify-center rounded-b-lg md:rounded-lg p-12 cursor-pointer bg-black/5 dark:bg-white/5 backdrop-blur transition rounded-lg hover:scale-[1.02]" on:mouseenter={() => hover="c"} on:mouseleave={() => hover="main"}>
<div class="text-6xl">
Plugins
</div>
<a href="https://docs.cyanprint.dev" class="text-3xl font-light p-4">
CREATE
</a>
</button>
</div>
</div>
Expand Down
Binary file added static/favicon.ico
Binary file not shown.
Binary file removed static/favicon.png
Binary file not shown.

0 comments on commit 1da59a4

Please sign in to comment.