Skip to content

Commit

Permalink
chore: update footer
Browse files Browse the repository at this point in the history
  • Loading branch information
joshxfi committed Jul 23, 2023
1 parent 1590c90 commit 82aec30
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 17 deletions.
10 changes: 1 addition & 9 deletions apps/web/src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,7 @@ export const Footer = () => {
rel='noreferrer noopener'
className='text-sm font-medium text-gray-500 hover:underline md:text-base'
>
Omsimos Collective
</a>
<a
href='https://github.com/joshxfi'
target='_blank'
rel='noreferrer noopener'
className='mt-2 text-sm font-medium text-gray-500 hover:underline md:text-base'
>
Ⓒ 2023 Josh Daniel Bañares
OMSIMOS© 2023
</a>
</div>
</footer>
Expand Down
8 changes: 0 additions & 8 deletions apps/web/src/utils/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,3 @@ export const hashPassword = (password: string) => {
export const isPassword = (password: string, hashed: string) => {
return bcrypt.compareSync(password, hashed);
};

export const revalidate = async (username: string) => {
await fetch(
`/api/revalidate?${new URLSearchParams({
username,
})}`
);
};

0 comments on commit 82aec30

Please sign in to comment.