completionId: cgen-2f22b5c472ba46cf804c6d133afc84a4
cgen-2f22b5c472ba46cf804c6d133afc84a4
This commit is contained in:
parent
cc17b37694
commit
de586381d7
1 changed files with 24 additions and 4 deletions
|
|
@ -609,7 +609,12 @@ export default function CodeLayout({ children, hideFooter }: LayoutProps) {
|
||||||
<Link
|
<Link
|
||||||
to="/gameforge"
|
to="/gameforge"
|
||||||
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"}
|
||||||
>
|
>
|
||||||
Game Development
|
Game Development
|
||||||
</Link>
|
</Link>
|
||||||
|
|
@ -618,7 +623,12 @@ export default function CodeLayout({ children, hideFooter }: LayoutProps) {
|
||||||
<Link
|
<Link
|
||||||
to="/corp"
|
to="/corp"
|
||||||
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"}
|
||||||
>
|
>
|
||||||
Development Consulting
|
Development Consulting
|
||||||
</Link>
|
</Link>
|
||||||
|
|
@ -627,7 +637,12 @@ export default function CodeLayout({ children, hideFooter }: LayoutProps) {
|
||||||
<Link
|
<Link
|
||||||
to="/mentorship"
|
to="/mentorship"
|
||||||
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"}
|
||||||
>
|
>
|
||||||
Mentorship Programs
|
Mentorship Programs
|
||||||
</Link>
|
</Link>
|
||||||
|
|
@ -636,7 +651,12 @@ export default function CodeLayout({ children, hideFooter }: LayoutProps) {
|
||||||
<Link
|
<Link
|
||||||
to="/research"
|
to="/research"
|
||||||
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"}
|
||||||
>
|
>
|
||||||
Research & Labs
|
Research & Labs
|
||||||
</Link>
|
</Link>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue