Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
sweetmantech committed Nov 11, 2023
1 parent 1cd1dd7 commit 18b1a59
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 22 deletions.
27 changes: 10 additions & 17 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,18 +1,11 @@
NEXT_PUBLIC_CRE8ORS_ADDRESS=
NEXT_PUBLIC_ALLOWLIST_CONTRACT_ADDRESS=
NEXT_PUBLIC_CHAIN_ID=
NEXT_PUBLIC_ALLOW_LIST_CHAIN_ID=
NEXT_PUBLIC_TYPEFORM_ID=
NEXT_PUBLIC_ALLOWLIST_API_KEY=
MONGODB_URI=
DEFENDER_AUTOTASK_WEBHOOK=
TF_TOKEN_READ_RESPONSES=
NEXT_PUBLIC_FIREBASE_API_KEY=
NEXT_PUBLIC_WALLETCONNECT_KEY=d087318e2c264d6bd85a134ec9e85d92
NEXT_PUBLIC_TESTNET=true
NEXT_PUBLIC_DROP_ADDRESS=
NEXT_PUBLIC_MINT_REFERRAL=0x7db43b909FF2c0D9210Fe0640757b159642D6DED
NEXT_PUBLIC_ALCHEMY_API_KEY=
NEXT_PUBLIC_MAGIC_PUBLISHABLE_KEY =
MAGIC_SECRET_KEY =
NEXT_PUBLIC_PARTICIPANTS_API_KEY=
BEEHIVE_PUBLICATION_ID=
BEEHIVE_API_KEY=
NEXT_PUBLIC_CRE8ORS_CLAIM_TICKET_ADDRESS=
NEXT_PUBLIC_CRE8ORS_EXCHANGE_ADDRESS=
NEXT_PUBLIC_TESTNET=

### SPOTIFY
NEXT_PUBLIC_CLIENT_ID=
NEXT_PUBLIC_CLIENT_SECRET=
NEXT_PUBLIC_REDIRECT_URI=http://localhost:3000/powerup
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# RELIEF by Heno.
# GEEKALEEK by OHGEESY FT FENIX FLEXIN.

[PLAY](https://play.mynameisheno.com/)


<img width="1419" alt="Screenshot 2023-10-24 at 11 36 34 PM" src="https://github.com/SweetmanTech/Heno-Relief-Game/assets/23249402/2329db9f-7503-4bf6-b1ac-5d28e12febfd">

## Getting Started
Expand Down
2 changes: 1 addition & 1 deletion components/LeaderboardPage/LeaderboardPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const LeaderboardPage = () => {
drop-shadow-[0_2px_2px_rgba(0,0,0,0.45)]
font-[500]"
>
Relief Game by Heno
{process.env.NEXT_PUBLIC_TITLE} by {process.env.NEXT_PUBLIC_ARTIST}
</div>
</div>
<div className="w-full flex justify-center pb-4">
Expand Down
5 changes: 3 additions & 2 deletions components/StartModal/StartModal.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import Modal from "../Modal"
import Button from "../Button"
import { ARTIST, TITLE } from "../../lib/consts"

const StartModal = ({ handleClick, children }) => (
<Modal
Expand All @@ -18,8 +19,8 @@ const StartModal = ({ handleClick, children }) => (
bg-black"
>
<div className="flex flex-col items-center gap-2">
<div className="text-xl md:text-4xl text-white uppercase">Relief</div>
<div className="text-lg md:text-xl text-white uppercase">by Heno.</div>
<div className="text-xl md:text-4xl text-white uppercase">{TITLE}</div>
<div className="text-lg md:text-xl text-white uppercase">by {ARTIST}</div>
</div>
<Button className="text-xl md:text-4xl pb-4 md:pb-8" id="play-button" onClick={handleClick}>
Start Game
Expand Down
2 changes: 2 additions & 0 deletions lib/consts.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ export const SPOTIFY_REDIRECT_URI = process.env.NEXT_PUBLIC_REDIRECT_URI
export const SPOTIFY_STATE_KEY = "spotify_auth_state"
export const RELIEF_TRACK_ID = "5aDNHHNXc16VktqV1gSq23"
export const HENO_ARTIST_ID = "3mr6jeVpPIXBp8IMMb60aD"
export const TITLE = process.env.NEXT_PUBLIC_TITLE
export const ARTIST = process.env.NEXT_PUBLIC_ARTIST

0 comments on commit 18b1a59

Please sign in to comment.