completionId: cgen-9a8ead399f2740cfae8388562efd268e
cgen-9a8ead399f2740cfae8388562efd268e
This commit is contained in:
parent
de586381d7
commit
241678d24d
1 changed files with 24 additions and 6 deletions
|
|
@ -677,7 +677,10 @@ export default function CodeLayout({ children, hideFooter }: LayoutProps) {
|
||||||
<Link
|
<Link
|
||||||
to="/about"
|
to="/about"
|
||||||
onClick={scrollToTop}
|
onClick={scrollToTop}
|
||||||
className="hover:text-aethex-400 transition-all duration-300 hover:translate-x-1 inline-block"
|
className="transition-all duration-300 hover:translate-x-1 inline-block"
|
||||||
|
style={{ color: "inherit" }}
|
||||||
|
onMouseEnter={(e) => e.currentTarget.style.color = theme.accentHex}
|
||||||
|
onMouseLeave={(e) => e.currentTarget.style.color = "inherit"}
|
||||||
>
|
>
|
||||||
About AeThex
|
About AeThex
|
||||||
</Link>
|
</Link>
|
||||||
|
|
@ -686,7 +689,10 @@ export default function CodeLayout({ children, hideFooter }: LayoutProps) {
|
||||||
<Link
|
<Link
|
||||||
to="/opportunities"
|
to="/opportunities"
|
||||||
onClick={scrollToTop}
|
onClick={scrollToTop}
|
||||||
className="hover:text-aethex-400 transition-all duration-300 hover:translate-x-1 inline-block"
|
className="transition-all duration-300 hover:translate-x-1 inline-block"
|
||||||
|
style={{ color: "inherit" }}
|
||||||
|
onMouseEnter={(e) => e.currentTarget.style.color = theme.accentHex}
|
||||||
|
onMouseLeave={(e) => e.currentTarget.style.color = "inherit"}
|
||||||
>
|
>
|
||||||
Opportunities
|
Opportunities
|
||||||
</Link>
|
</Link>
|
||||||
|
|
@ -695,7 +701,10 @@ export default function CodeLayout({ children, hideFooter }: LayoutProps) {
|
||||||
<Link
|
<Link
|
||||||
to="/community"
|
to="/community"
|
||||||
onClick={scrollToTop}
|
onClick={scrollToTop}
|
||||||
className="hover:text-aethex-400 transition-all duration-300 hover:translate-x-1 inline-block"
|
className="transition-all duration-300 hover:translate-x-1 inline-block"
|
||||||
|
style={{ color: "inherit" }}
|
||||||
|
onMouseEnter={(e) => e.currentTarget.style.color = theme.accentHex}
|
||||||
|
onMouseLeave={(e) => e.currentTarget.style.color = "inherit"}
|
||||||
>
|
>
|
||||||
Community Hub
|
Community Hub
|
||||||
</Link>
|
</Link>
|
||||||
|
|
@ -704,7 +713,10 @@ export default function CodeLayout({ children, hideFooter }: LayoutProps) {
|
||||||
<Link
|
<Link
|
||||||
to="/changelog"
|
to="/changelog"
|
||||||
onClick={scrollToTop}
|
onClick={scrollToTop}
|
||||||
className="hover:text-aethex-400 transition-all duration-300 hover:translate-x-1 inline-block"
|
className="transition-all duration-300 hover:translate-x-1 inline-block"
|
||||||
|
style={{ color: "inherit" }}
|
||||||
|
onMouseEnter={(e) => e.currentTarget.style.color = theme.accentHex}
|
||||||
|
onMouseLeave={(e) => e.currentTarget.style.color = "inherit"}
|
||||||
>
|
>
|
||||||
Changelog
|
Changelog
|
||||||
</Link>
|
</Link>
|
||||||
|
|
@ -713,7 +725,10 @@ export default function CodeLayout({ children, hideFooter }: LayoutProps) {
|
||||||
<Link
|
<Link
|
||||||
to="/status"
|
to="/status"
|
||||||
onClick={scrollToTop}
|
onClick={scrollToTop}
|
||||||
className="hover:text-aethex-400 transition-all duration-300 hover:translate-x-1 inline-block"
|
className="transition-all duration-300 hover:translate-x-1 inline-block"
|
||||||
|
style={{ color: "inherit" }}
|
||||||
|
onMouseEnter={(e) => e.currentTarget.style.color = theme.accentHex}
|
||||||
|
onMouseLeave={(e) => e.currentTarget.style.color = "inherit"}
|
||||||
>
|
>
|
||||||
System Status
|
System Status
|
||||||
</Link>
|
</Link>
|
||||||
|
|
@ -722,7 +737,10 @@ export default function CodeLayout({ children, hideFooter }: LayoutProps) {
|
||||||
<Link
|
<Link
|
||||||
to="/investors"
|
to="/investors"
|
||||||
onClick={scrollToTop}
|
onClick={scrollToTop}
|
||||||
className="hover:text-aethex-400 transition-all duration-300 hover:translate-x-1 inline-block"
|
className="transition-all duration-300 hover:translate-x-1 inline-block"
|
||||||
|
style={{ color: "inherit" }}
|
||||||
|
onMouseEnter={(e) => e.currentTarget.style.color = theme.accentHex}
|
||||||
|
onMouseLeave={(e) => e.currentTarget.style.color = "inherit"}
|
||||||
>
|
>
|
||||||
Investors
|
Investors
|
||||||
</Link>
|
</Link>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue