Compare commits

..

No commits in common. "ab43dc31a4518bc93c5ee901da706f3b502a9372" and "886d86ad07b9e83ba44c7fbec4c3df5f4de16e35" have entirely different histories.

3 changed files with 12 additions and 5 deletions

View File

@ -20,8 +20,6 @@ This is so time gets set on the local chain, otherwise you will start at 0 time
#### 3. 2. Point Metamask to Anvil network for local dev
#### 3. 3. Change `app/contract_address.ts` to match your program address if needed
### 4. Local development requires mining blocks by hand
Call `cast rpc anvil_mine` to mine next block, otherwise it wont ever progress and time "stands still" as far as the game is concerned

View File

@ -26,7 +26,7 @@ const Home: NextPage = () => {
</main>
<footer className={styles.footer}>
Made with by your frens at 😈 Slay the Moloch team for Cohort VII of <a href="https://www.raidguild.org/" target="blank">RaidGuild</a>
Made with by your fren mic0
</footer>
</div>
);

View File

@ -21,10 +21,19 @@
}
.footer {
margin-top: 2rem;
display: flex;
flex: 1;
padding: 2rem 0;
border-top: 1px solid #eaeaea;
text-align: center;
justify-content: center;
align-items: center;
}
.footer a {
display: flex;
justify-content: center;
align-items: center;
flex-grow: 1;
}
.title a {