Merge 'upstream/main'

This commit is contained in:
Hugo 2025-08-02 12:00:06 +01:00
commit b0ca88b4f9
33 changed files with 305 additions and 211 deletions

View file

@ -129,7 +129,7 @@ export const search: DefaultTheme.Config['search'] = {
export const socialLinks: DefaultTheme.SocialLink[] = [
{ icon: 'github', link: 'https://github.com/fmhy/edit' },
{ icon: 'discord', link: 'https://rentry.co/fmhy-invite' },
{ icon: 'discord', link: 'https://pastebin.com/raw/n9BfTkjU' },
{
icon: 'reddit',
link: 'https://reddit.com/r/FREEMEDIAHECKYEAH'

View file

@ -226,7 +226,7 @@ const toggleCard = () => (isCardShown.value = !isCardShown.value)
more information from you, otherwise join our
<a
class="text-primary text-underline font-semibold"
href="https://rentry.co/FMHY-Invite/"
href="https://pastebin.com/raw/n9BfTkjU"
>
Discord.
</a>

View file

@ -19,9 +19,9 @@ import z from 'zod'
export const FeedbackSchema = z.object({
message: z.string().min(5).max(1000),
type: z.enum(['suggestion', 'appreciation', 'other']),
page: z.string().min(3).max(20),
page: z.string().min(3).max(25),
// For heading based feedback
heading: z.string().min(3).max(20).optional()
heading: z.string().min(3).max(99).optional()
})
export interface Option {