feat: link footer Community to Discord server
Update footer link to Discord with target and rel attributes. #VERCEL_SKIP Co-authored-by: Jeff Emmett <46964190+Jeff-Emmett@users.noreply.github.com>
This commit is contained in:
parent
9036ca6647
commit
440e27a3ee
|
|
@ -9,14 +9,24 @@ export function Footer() {
|
|||
<div className="w-8 h-8 rounded-lg bg-primary/10 text-primary flex items-center justify-center">
|
||||
<Network className="w-5 h-5" />
|
||||
</div>
|
||||
<span className="font-semibold text-lg">{"MycoFi"}</span>
|
||||
<span className="font-semibold text-lg">{"A MycoFi Concept"}</span>
|
||||
</div>
|
||||
|
||||
<div className="flex flex-wrap justify-center gap-6 text-sm text-muted-foreground">
|
||||
<a href="#" className="hover:text-foreground transition-colors">
|
||||
<a
|
||||
href="https://www.jeffemmett.com/presentations"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="hover:text-foreground transition-colors"
|
||||
>
|
||||
{"Research"}
|
||||
</a>
|
||||
<a href="#" className="hover:text-foreground transition-colors">
|
||||
<a
|
||||
href="https://discord.gg/mFxSXCrfrN"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="hover:text-foreground transition-colors"
|
||||
>
|
||||
{"Community"}
|
||||
</a>
|
||||
<a href="https://book.mycofi.earth" className="hover:text-foreground transition-colors">
|
||||
|
|
|
|||
Loading…
Reference in New Issue