Skip to content

Commit

Permalink
Add project info and disclaimer
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkerm committed Apr 21, 2024
1 parent fafe029 commit 49ae5c5
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 9 deletions.
29 changes: 23 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
# samgo
# Samgo

This template should help get you started developing with Vue 3 in Vite.
A bingo card for Sam to use while watching any [Game Changer](https://www.dropout.tv/game-changer) episode. A layer deeper from S6E5's "Bingo" episode.

## Disclaimer: This Fan Game is Not Associated with Dropout or Game Changer

This fan game is not affiliated with, endorsed by, or sponsored by Dropout or Game Changer. All logos, audio, and other intellectual property rights belong to their respective owners. This project was made purely for educational and entertainment purposes and does not seek to infringe upon any copyrights or trademarks.

For any inquiries or concerns, please reach out to [Mikeware](https://x.com/MikewareXGR").

- The intro audio clip and GC logo are from S3E15 - Secret Samta 2: The Samta Clause
- The ending audio clip is from S2E4 - A Sponsored Episode

The code itself is currently intentionally unlicensed (retained by me) and just here for others educational benefit and hosting.

## Project Info

This was an educational endeavour to learn more about [Vue 3](https://vuejs.org/) and CSS animations. It was built from the base Vue.js template but using [Bun](https://bun.sh/).

Original template instructions below.

## Recommended IDE Setup

Expand All @@ -17,23 +34,23 @@ See [Vite Configuration Reference](https://vitejs.dev/config/).
## Project Setup

```sh
npm install
bun install
```

### Compile and Hot-Reload for Development

```sh
npm run dev
bun run dev
```

### Type-Check, Compile and Minify for Production

```sh
npm run build
bun run build
```

### Lint with [ESLint](https://eslint.org/)

```sh
npm run lint
bun run lint
```
26 changes: 23 additions & 3 deletions src/views/HomeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,18 @@ function startGame() {

<template>
<main>
<button class="center" @click="startGame" v-if="loadState == 'starting'">
<img src="@/assets/PlayGamePodium.png" alt="Play Game" draggable="false">
</button>
<div class="center" v-if="loadState == 'starting'">
<button @click="startGame" type="button">
<img src="@/assets/PlayGamePodium.png" alt="Play Game" draggable="false">
</button>
<span>
<h3>Disclaimer: This Fan Game is Not Associated with Dropout or Game Changer</h3>

<p>This fan game is not affiliated with, endorsed by, or sponsored by Dropout or Game Changer. All logos, audio, and other intellectual property rights belong to their respective owners. This project was made purely for educational and entertainment purposes and does not seek to infringe upon any copyrights or trademarks.</p>

<p>For any inquiries or concerns, please reach out to <a href="https://x.com/MikewareXGR">Mikeware</a>. <a href="https://github.com/Mikeware/Samgo">More info here</a>.</p>
</span>
</div>

<BingoCard class="full" v-if="loadState == 'bingo' || loadState == 'game'" />

Expand All @@ -36,12 +45,23 @@ function startGame() {
button {
background: transparent;
border: 3px solid transparent;
display: block;
margin: 48px auto;
}
button:hover {
cursor: pointer;
}
h3 {
font-weight: bold;
margin: 0 0 8px 0;
}
p {
margin: 4px 0;
}
.full {
position: absolute;
top: 0;
Expand Down

0 comments on commit 49ae5c5

Please sign in to comment.