Skip to content

Commit

Permalink
move about/faq to the left
Browse files Browse the repository at this point in the history
  • Loading branch information
Zir0h committed Feb 11, 2025
1 parent c72432c commit 285f435
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions src/components/footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,19 +66,28 @@ export const Footer = ({ menu, pin }: FooterProps) => {
<motion.footer {...transition()} className={classes_content}>
<div className={styles.logo}>
Teia DAO LLC.
<a href="https://tzkt.io/">Powered by TzKT API</a>
{menu && (
{menu && (<>
<Button
alt="teia rotating logo"
onClick={() => setLogoSeed(Math.random() * 100)}
>
<RotatingLogo theme={theme} logos={logos} seed={logoSeed} />
</Button>
<div className={styles.menu_left}>
<MenuItem className={styles.menu_label} route="about" />
<MenuItem
className={styles.menu_label}
label="F.A.Q"
route="faq"
/>
</div>
</>
)}
</div>
<a href="https://tzkt.io/">Powered by TzKT API</a>
</div>
<div className={styles.copyright}>
<div>
{language.footer.mint}
{language.footer.mint}
</div>
<div>
<MenuItem
Expand Down Expand Up @@ -106,14 +115,7 @@ export const Footer = ({ menu, pin }: FooterProps) => {
{menu && (
<>
<div className={styles.menus}>
<div className={styles.menu_left}>
<MenuItem className={styles.menu_label} route="about" />
<MenuItem
className={styles.menu_label}
label="F.A.Q"
route="faq"
/>
</div>

<Line vertical />

<div className={styles.menu_right}>
Expand Down

0 comments on commit 285f435

Please sign in to comment.