Skip to content

Commit

Permalink
redeploy
Browse files Browse the repository at this point in the history
  • Loading branch information
s-alad committed Aug 14, 2024
1 parent 2caf03f commit d7875d4
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
38 changes: 19 additions & 19 deletions client/components/navbar/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,15 @@ export default function Navbar() {
{/* <div className={s.sep}></div> */}
<span className={s.logout}>
<button
onClick={() => {
const confirmLogout = window.confirm("Are you sure you want to logout?");
if (confirmLogout) {
logout(router, localStorage);
}
}}
>
Logout
</button>
onClick={() => {
const confirmLogout = window.confirm("Are you sure you want to logout?");
if (confirmLogout) {
logout(router, localStorage);
}
}}
>
logout
</button>
</span>
<Link href={"/post"} className={s.logout}>
<button>post</button>
Expand All @@ -100,16 +100,16 @@ export default function Navbar() {
<button >realmojis</button>
</Link>
<span className={s.item}>
<button
onClick={() => {
const confirmLogout = window.confirm("Are you sure you want to logout?");
if (confirmLogout) {
logout(router, localStorage);
}
}}
>
Logout
</button>
<button
onClick={() => {
const confirmLogout = window.confirm("Are you sure you want to logout?");
if (confirmLogout) {
logout(router, localStorage);
}
}}
>
logout
</button>
</span>
<Link href={"/post"} className={s.post}>
<button>post</button>
Expand Down
4 changes: 2 additions & 2 deletions client/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,8 @@ export default function Home() {
</div>
</div>
<div className={s.info}>
<p>TooFake is currently working (I think??) but needs <span>your help!!</span></p>
<p>BeReal continues to beef up its security making it much harder to reverse engineer. If you are well versed in reverse engineering, please check out the <a href="https://github.com/s-alad/toofake"><FontAwesomeIcon icon={faGithub} /> github</a> and help us keep the befake project working!</p>
<p>TooFake is working for american numbers, but is unlikely to work for others. <span>TooFake needs your help maintaining the project!</span></p>
<p>TooFake has taken a considerable amount of my time (& money) to keep alive. Any help is greatly appreciated especially as BeReal continues to beef up its security making it much harder to reverse engineer. If you are well versed in reverse engineering, please check out the <a href="https://github.com/s-alad/toofake"><FontAwesomeIcon icon={faGithub} /> github</a> and help us keep the project working!</p>
{/* <p>You can login using your phone number, view bereals and post custom images.</p>
<p>Please report any bugs or issues on the <a href="https://github.com/s-alad/toofake"><FontAwesomeIcon icon={faGithub} /> github</a> theres probably a bunch!</p>
<p>More features coming soon!</p> */}
Expand Down

0 comments on commit d7875d4

Please sign in to comment.