Merge branch 'main' into feat/download-checksum

This commit is contained in:
taroj1205 2025-05-09 12:25:52 +12:00 committed by GitHub
commit 45d38e60ae
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 17 additions and 7 deletions

View file

@ -30,20 +30,24 @@ function getHeroTitleAnimation() {
class="relative px-12 text-center !font-normal !leading-8 leading-[108px] md:!text-7xl lg:px-0 lg:!text-9xl"
>
<motion.span client:load {...getHeroTitleAnimation()}>
welcome
{'welcome'}
</motion.span>
<motion.span client:load {...getHeroTitleAnimation()}>
{'to'}
</motion.span>
<motion.span client:load {...getHeroTitleAnimation()}> to </motion.span>
<br class="hidden md:block" />
<motion.span client:load {...getHeroTitleAnimation()}> a </motion.span>
<motion.span client:load {...getHeroTitleAnimation()}>
{'a'}
</motion.span>
<motion.span
client:load
{...getHeroTitleAnimation()}
className="italic text-coral"
>
calmer
{'calmer'}
</motion.span>
<motion.span client:load {...getHeroTitleAnimation()}>
internet
{'internet'}
</motion.span>
</Title>
<motion.span client:load {...getHeroTitleAnimation()}>

View file

@ -48,8 +48,13 @@ import { ArrowUp } from 'lucide-astro'
{releaseNotes.map((notes: any) => <ReleaseNoteItem {...notes} />)}
</div>
</main>
<Button href="#" id="scroll-top" isPrimary class="fixed bottom-8 right-8">
<p class="items-center gap-2 sm:flex">
<Button
href="#"
id="scroll-top"
isPrimary
class="fixed bottom-8 right-8"
>
<p class="hidden items-center gap-2 sm:flex">
Back to the top <ArrowUp aria-hidden="true" class="size-4" />
</p>
<ArrowUp aria-label="Back to the top" class="size-4 sm:hidden" />

View file

@ -2716,6 +2716,7 @@
"fixes": [
"Fixed toast notifications not aligning when tabs are on the right.",
"Fixed restoring previous tab not working on some cases",
"Disabled search suggestions by default. Can be enabled again in about:preferences -> 'Search'",
"Fixed compact mode always showing a background tab has been added",
"Other small fixes and improvements"
],