mirror of
https://github.com/supabase/supabase.git
synced 2026-06-13 10:09:12 +08:00
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>
86 lines
2.5 KiB
TypeScript
86 lines
2.5 KiB
TypeScript
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? We’d 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: 'Can’t find what you’re 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
|