Add wave emoji favicon, update footer with nofi + mycofi links

- Add 🌊 SVG favicon to fix 404 on /favicon.ico
- Remove "Back to NoFi" button from CTA section
- Add nofi.lol and mycofi.earth links to footer

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-03-09 21:45:52 -07:00
parent a08a6bdb69
commit 7ded9d8414
2 changed files with 15 additions and 14 deletions

1
app/icon.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y=".9em" font-size="90">🌊</text></svg>

After

Width:  |  Height:  |  Size: 109 B

View File

@ -92,14 +92,6 @@ export default function CTASection() {
</p> </p>
</ScrollReveal> </ScrollReveal>
<ScrollReveal delay={0.5}>
<a
href="https://nofi.lol"
className="inline-block border border-flow/15 px-10 py-4 text-foam/30 hover:text-flow/60 hover:border-flow/40 hover:bg-flow/5 transition-all duration-700 text-sm rounded-full font-light"
>
back to NoFi
</a>
</ScrollReveal>
</div> </div>
{/* Footer — clean, minimal */} {/* Footer — clean, minimal */}
@ -109,12 +101,20 @@ export default function CTASection() {
<span className="text-mist/20 text-xs font-light"> <span className="text-mist/20 text-xs font-light">
Part of the CoFi cinematic universe Part of the CoFi cinematic universe
</span> </span>
<a <div className="flex gap-6">
href="https://nofi.lol" <a
className="text-mist/20 text-xs font-light hover:text-flow/40 transition-all duration-700" href="https://nofi.lol"
> className="text-mist/20 text-xs font-light hover:text-flow/40 transition-all duration-700"
nofi.lol >
</a> nofi.lol
</a>
<a
href="https://mycofi.earth"
className="text-mist/20 text-xs font-light hover:text-flow/40 transition-all duration-700"
>
mycofi.earth
</a>
</div>
</footer> </footer>
</section> </section>
) )