Files
supabase/apps/www/data/support.tsx
Ivan Vasilov 05a542ccea chore: Migrate all feather icons to lucide icons (#29038)
* Add lucide-react to docs (to make the autocomplete work).

* Migrate the docs app icons.

* Migrate the ui-patterns.

* Remove the old icons from ui package.

* Migrate the www app from react-feather icons.

* Migrate all of studio icons.

* Migrate the only component in design-system.

* Fix an old import in ui package. Revert an import in docs app.

* Fix some pages in www.

* Remove unneeded files used in generation of icons.

* Fix a prettier error.

* Fix more issues in www.

* Fix an issue in Log Date picker.

* Replace all string sizes with number sizes because the icons grew in some cases.

* Fix more imports in security page.

* Fix an extra import.

* Remove the size prop from all icons if they're in a button and they match the button size.

* Minor fixes for docs and www.

---------

Co-authored-by: Joshen Lim <joshenlimek@gmail.com>
2024-09-04 19:46:21 +08:00

93 lines
2.7 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: 'Issues',
paragraph: "Found a bug? We'd love to hear about it in our GitHub issues.",
links: [
{
label: 'Open GitHub 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 and the community.',
links: [
{
label: 'Request feature',
link: 'https://github.com/orgs/supabase/discussions/categories/feature-requests',
target: '_blank',
icon: <IconGitHubSolid />,
type: 'default',
},
],
},
{
title: 'Ask the Community',
paragraph:
'Join our GitHub discussions or our Discord server to browse for help and best practices.',
links: [
{
label: 'Ask a question',
link: 'https://github.com/supabase/supabase/discussions',
target: '_blank',
icon: <IconDiscussions />,
type: 'default',
},
{
label: 'Join 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',
},
],
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 Ticket',
link: 'https://supabase.com/dashboard/support/new',
target: '_blank',
icon: <ArrowUpRight />,
className: '!text-foreground-light hover:!text-foreground',
type: 'text',
},
],
},
}
export default data