completionId: cgen-c731667477a841c68034229df09e3bbe
cgen-c731667477a841c68034229df09e3bbe
This commit is contained in:
parent
241678d24d
commit
0491756bf3
1 changed files with 24 additions and 6 deletions
|
|
@ -761,7 +761,10 @@ export default function CodeLayout({ children, hideFooter }: LayoutProps) {
|
||||||
<Link
|
<Link
|
||||||
to="/docs"
|
to="/docs"
|
||||||
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"}
|
||||||
>
|
>
|
||||||
Documentation
|
Documentation
|
||||||
</Link>
|
</Link>
|
||||||
|
|
@ -770,7 +773,10 @@ export default function CodeLayout({ children, hideFooter }: LayoutProps) {
|
||||||
<Link
|
<Link
|
||||||
to="/tutorials"
|
to="/tutorials"
|
||||||
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"}
|
||||||
>
|
>
|
||||||
Tutorials
|
Tutorials
|
||||||
</Link>
|
</Link>
|
||||||
|
|
@ -779,7 +785,10 @@ export default function CodeLayout({ children, hideFooter }: LayoutProps) {
|
||||||
<Link
|
<Link
|
||||||
to="/blog"
|
to="/blog"
|
||||||
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"}
|
||||||
>
|
>
|
||||||
Blog
|
Blog
|
||||||
</Link>
|
</Link>
|
||||||
|
|
@ -788,7 +797,10 @@ export default function CodeLayout({ children, hideFooter }: LayoutProps) {
|
||||||
<Link
|
<Link
|
||||||
to="/support"
|
to="/support"
|
||||||
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"}
|
||||||
>
|
>
|
||||||
Support Center
|
Support Center
|
||||||
</Link>
|
</Link>
|
||||||
|
|
@ -797,7 +809,10 @@ export default function CodeLayout({ children, hideFooter }: LayoutProps) {
|
||||||
<Link
|
<Link
|
||||||
to="/trust"
|
to="/trust"
|
||||||
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"}
|
||||||
>
|
>
|
||||||
Transparency
|
Transparency
|
||||||
</Link>
|
</Link>
|
||||||
|
|
@ -806,7 +821,10 @@ export default function CodeLayout({ children, hideFooter }: LayoutProps) {
|
||||||
<Link
|
<Link
|
||||||
to="/press"
|
to="/press"
|
||||||
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"}
|
||||||
>
|
>
|
||||||
Press Kit
|
Press Kit
|
||||||
</Link>
|
</Link>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue