-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
251 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"_variables": { | ||
"lastUpdateCheck": 1721747870008 | ||
"lastUpdateCheck": 1723115269724 | ||
} | ||
} |
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,2 +1,5 @@ | ||
SUPABASE_URL=YOUR_SUPABASE_URL | ||
SUPABASE_ANON_KEY=YOUR_SUPABASE_ANON_KEY | ||
SUPABASE_ANON_KEY=YOUR_SUPABASE_ANON_KEY | ||
STRIPE_PUBLIC_KEY=YOUR_STRIPE_PUBLIC_KEY | ||
STRIPE_KEY=YOUR_STRIPE_KEY | ||
SENDFAST_PRO_URL=YOUR_SENDFAST_PRO_URL |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 |
---|---|---|
@@ -1,8 +1,11 @@ | ||
interface ImportMetaEnv { | ||
readonly SUPABASE_URL: string | ||
readonly SUPABASE_ANON_KEY: string | ||
readonly SUPABASE_URL: string | ||
readonly SUPABASE_ANON_KEY: string | ||
readonly STRIPE_PUBLIC_KEY: string | ||
readonly STRIPE_KEY: string | ||
readonly SENDFAST_PRO_URL: string | ||
} | ||
|
||
interface ImportMeta { | ||
readonly env: ImportMetaEnv | ||
readonly env: ImportMetaEnv | ||
} |
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,22 @@ | ||
--- | ||
import Layout from "../../layouts/Layout.astro"; | ||
import Navbar from "../../components/Navbar.astro"; | ||
--- | ||
<Layout title="Sendfa.st App"> | ||
<Navbar/> | ||
<section id="app"> | ||
<div class="relative z-10 max-w-5xl mx-auto flex flex-col items-center justify-center gap-16 lg:gap-20 px-8 py-12 lg:py-32"> | ||
<h1 class="text-4xl font-black">Join or create room</h1> | ||
<div class="relative flex justify-center flex-col lg:flex-row items-center lg:items-stretch gap-8"> | ||
<div class="relative max-w-lg w-full"> | ||
<button class="btn btn-primary w-full mt-4">Create room</button> | ||
</div> | ||
<div class="relative max-w-lg w-full"> | ||
<label for="room-name" class="text-lg font-bold">Room name</label> | ||
<input id="room-name" type="text" class="w-full border border-gray-300 rounded-lg p-4" placeholder="Room name"/> | ||
<button class="btn btn-primary w-full mt-4">Join room</button> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
</Layout> |
Oops, something went wrong.