mirror of
https://github.com/supabase/supabase.git
synced 2026-05-07 09:20:21 -04:00
05a542ccea
* 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>
38 lines
1.1 KiB
TypeScript
38 lines
1.1 KiB
TypeScript
import { CheckCircle, FlaskConical, LifeBuoy } from 'lucide-react'
|
|
import { PrivacySettings } from 'ui-patterns/PrivacySettings'
|
|
|
|
export const primaryLinks = [
|
|
{
|
|
featherIcon: LifeBuoy,
|
|
text: 'Need some help?',
|
|
ctaLabel: 'Contact support',
|
|
url: 'https://supabase.com/support',
|
|
},
|
|
{
|
|
featherIcon: FlaskConical,
|
|
text: 'Latest product updates?',
|
|
ctaLabel: 'See Changelog',
|
|
url: 'https://supabase.com/changelog',
|
|
},
|
|
{
|
|
featherIcon: CheckCircle,
|
|
text: "Something's not right?",
|
|
ctaLabel: 'Check system status',
|
|
url: 'https://status.supabase.com/',
|
|
},
|
|
]
|
|
|
|
export const secondaryLinks = [
|
|
{
|
|
title: 'Contributing',
|
|
url: 'https://github.com/supabase/supabase/blob/master/apps/docs/DEVELOPERS.md',
|
|
},
|
|
{
|
|
title: 'Author Styleguide',
|
|
url: 'https://github.com/supabase/supabase/blob/master/apps/docs/CONTRIBUTING.md',
|
|
},
|
|
{ title: 'Open Source', url: 'https://supabase.com/open-source' },
|
|
{ title: 'SupaSquad', url: 'https://supabase.com/supasquad' },
|
|
{ title: 'Privacy Settings', component: PrivacySettings },
|
|
]
|