Compare commits

...

1 commit
main ... weird2

Author SHA1 Message Date
Dariusz Niemczyk 3b1bbdf67c
feat: add async rendering to hopefully speed things up
Some checks failed
/ deploy (push) Failing after 2s
2025-02-13 00:57:06 +01:00

View file

@ -3,7 +3,7 @@ import { Button } from "@/components/ui/button"
import { Sections, type translations } from "@/i18n/translations" import { Sections, type translations } from "@/i18n/translations"
import { cn } from "@/lib/utils" import { cn } from "@/lib/utils"
import { MoonIcon, SunIcon } from "lucide-react" import { MoonIcon, SunIcon } from "lucide-react"
import { useEffect, useState } from "react" import { useDeferredValue, useEffect, useState } from "react"
import { MobileNav } from "./mobile-nav" import { MobileNav } from "./mobile-nav"
import { useTheme } from "./providers" import { useTheme } from "./providers"
import { LanguageSelector } from "./ui/language-selector" import { LanguageSelector } from "./ui/language-selector"
@ -26,6 +26,7 @@ export function Nav({
}) { }) {
const { theme, setTheme } = useTheme() const { theme, setTheme } = useTheme()
const [activeSection, setActiveSection] = useState<Sections>("about") const [activeSection, setActiveSection] = useState<Sections>("about")
const deferedActiveSection = useDeferredValue(activeSection)
useEffect(() => { useEffect(() => {
@ -89,12 +90,12 @@ export function Nav({
key={value} key={value}
href={`#${value}`} href={`#${value}`}
className={cn("text-sm md:text-md hover:text-primary transition-colors relative group", { className={cn("text-sm md:text-md hover:text-primary transition-colors relative group", {
'text-primary': activeSection === value 'text-primary': deferedActiveSection === value
})} })}
> >
{t.nav[value]} {t.nav[value]}
<span className={cn("absolute inset-x-0 -bottom-1 h-0.5 bg-primary transform scale-x-0 group-hover:scale-x-100 transition-transform", { <span className={cn("absolute inset-x-0 -bottom-1 h-0.5 bg-primary transform scale-x-0 group-hover:scale-x-100 transition-transform", {
'scale-x-100': activeSection === value 'scale-x-100': deferedActiveSection === value
})} /> })} />
</a> </a>
))} ))}
@ -113,7 +114,7 @@ export function Nav({
{/* Mobile Navigation */} {/* Mobile Navigation */}
<div className="md:hidden ml-2"> <div className="md:hidden ml-2">
<MobileNav t={t} linksOrder={linksOrder} activeSection={activeSection} /> <MobileNav t={t} linksOrder={linksOrder} activeSection={deferedActiveSection} />
</div> </div>
</div> </div>
</div> </div>