Skip to content

Commit

Permalink
simplify enclave logo in footer
Browse files Browse the repository at this point in the history
  • Loading branch information
samepant committed Aug 8, 2024
1 parent 79fb8c0 commit dc4d449
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions packages/client/src/components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@
import React from 'react'
import GnosisGuildLogo from '@/assets/icons/gg.svg'
import EnclaveLogo from '@/assets/icons/enclaveLogo.svg'
import { Link } from 'react-router-dom'

const Footer: React.FC = () => {
return (
<footer className='relative z-10 w-full border-t-2 border-slate-600/20 bg-slate-200 p-6'>
<div className='mx-auto flex w-full max-w-screen-xl flex-col items-center justify-end gap-2 md:flex-row'>
<div className='flex items-center gap-2'>
<div className='mx-auto flex w-full max-w-screen-xl flex-col items-center justify-end gap-1 md:flex-row'>
<div className='flex items-center gap-1'>
<p className='text-sm'>Secured with</p>
<Link to='https://enclave.gg' target='_blank' className='flex flex-col items-center gap-2 md:flex-row'>
<img src={EnclaveLogo} className='h-6 w-auto cursor-pointer duration-300 ease-in-out hover:opacity-70' />
<Link to='https://enclave.gg' target='_blank'>
<p className='font-serif font-bold'>Enclave</p>
</Link>
</div>
<div className='flex items-center gap-2'>
<div className='flex items-center gap-1'>
<p className='text-sm'>built by</p>
<div className='flex items-center gap-2 duration-300 ease-in-out hover:opacity-70'>
<div className='flex items-center gap-1 duration-300 ease-in-out hover:opacity-70'>
<Link to='https://www.gnosisguild.org/' target='_blank' className='flex flex-col items-center gap-2 md:flex-row'>
<p className='text-sm font-bold'>Gnosis Guild</p>
<img src={GnosisGuildLogo} className='h-6 w-6' />
Expand Down

0 comments on commit dc4d449

Please sign in to comment.