Files
supabase/apps/www/data/support.tsx
Ivan Vasilov 56de26fe22 chore: Migrate the monorepo to use Tailwind v4 (#45318)
This PR migrates the whole monorepo to use Tailwind v4:
- Removed `@tailwindcss/container-queries` plugin since it's included by
default in v4,
- Bump all instances of Tailwind to v4. Made minimal changes to the
shared config to remove non-supported features (`alpha` mentions),
- Migrate all apps to be compatible with v4 configs,
- Fix the `typography.css` import in 3 apps,
- Add missing rules which were included by default in v3,
- Run `pnpm dlx @tailwindcss/upgrade` on all apps, which renames a lot
of classes
- Rename all misnamed classes according to
https://tailwindcss.com/docs/upgrade-guide#renamed-utilities in all
apps.

---------

Co-authored-by: Jordi Enric <jordi.err@gmail.com>
2026-04-30 10:53:24 +00:00

86 lines
2.5 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { ArrowUpRight } from 'lucide-react'
import { IconDiscord, IconDiscussions, IconGitHubSolid } from 'ui'
const data = {
meta_title: 'Help & Support | Supabase',
meta_description:
'Find help and support for Supabase. Our Support team provide answers on all types of issues, including account information, billing, and refunds.',
hero: {
h1: 'Support',
title: 'Hello, how can we help?',
},
cards: [
{
title: 'Community support',
paragraph:
'Our Discord community can help with code-related issues. Many questions are answered in minutes.',
links: [
{
label: 'Join us on Discord',
link: 'https://discord.supabase.com/',
target: '_blank',
icon: <IconDiscord fill="hsl(var(--background-default))" />,
type: 'secondary',
},
],
className: 'col-span-full xl:col-span-1',
},
{
title: 'Issues',
paragraph: 'Found a bug? Wed love to hear about it in our GitHub issues.',
links: [
{
label: 'Report an issue',
link: 'https://github.com/supabase/supabase/issues',
target: '_blank',
icon: <IconGitHubSolid />,
type: 'default',
},
],
},
{
title: 'Feature requests',
paragraph: 'Want to suggest a new feature? Share it with us on GitHub discussions.',
links: [
{
label: 'Suggest a feature',
link: 'https://github.com/orgs/supabase/discussions/categories/feature-requests',
target: '_blank',
icon: <IconDiscussions />,
type: 'default',
},
],
},
],
banner: {
title: 'Cant find what youre looking for?',
paragraph: (
<>
<p className="text-foreground-light">The Supabase Support Team is ready to help.</p>
<p className="text-foreground-lighter text-sm">
Response time for support tickets will vary depending on plan type and severity of the
issue.
</p>
</>
),
links: [
{
label: 'Contact enterprise sales',
link: 'https://forms.supabase.com/enterprise',
target: '_blank',
type: 'default',
},
{
label: 'Open support ticket',
link: 'https://supabase.com/dashboard/support/new',
target: '_blank',
icon: <ArrowUpRight />,
className: 'text-foreground-light! hover:text-foreground!',
type: 'text',
},
],
},
}
export default data