Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ Our YouTube channel has great videos to help you implement Supabase Auth with Ne

Also, take some time to get familiar with some concepts on authentication with Next.js, such as https://nextjs.org/docs/app/building-your-application/authentication.

We know your requirements vary, and you might run into an edge case. In that scenario, use our amazing community channels ([GitHub](https://github.com/orgs/supabase/discussions), [Discord](https://discord.gg/rxTfewPvys)) to get help troubleshooting the issue. You can post your issues to the `@supabase/ssr` [GitHub repo](https://github.com/supabase/ssr/issues). We always welcome your contributions!
We know your requirements vary, and you might run into an edge case. In that scenario, join our amazing [Discord community](https://discord.supabase.com) to get help troubleshooting the issue. You can post your issues to the `@supabase/ssr` [GitHub repo](https://github.com/supabase/ssr/issues). We always welcome your contributions!

If none of the above works, don’t hesitate to reach out to [Supabase support](https://supabase.help); consider adding more information, such as your use case, code snippets, a copy of your `package.json`, `middleware.ts` and a HAR file, to help the support team triage your issue.
52 changes: 18 additions & 34 deletions apps/www/data/home/content.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { MessageCircle } from 'lucide-react'
import VideoWithHighlights from 'components/VideoWithHighlights'
import { useSendTelemetryEvent } from 'lib/telemetry'
import Link from 'next/link'
import { Button } from 'ui'
import VideoWithHighlights from 'components/VideoWithHighlights'
import ProductModules from '../ProductModules'
import { useSendTelemetryEvent } from 'lib/telemetry'

import tweets from 'shared-data/tweets'
import MainProducts from 'data/MainProducts'
import tweets from 'shared-data/tweets'
import { IconDiscord } from 'ui'

export default () => {
const sendTelemetryEvent = useSendTelemetryEvent()
Expand Down Expand Up @@ -173,36 +173,20 @@ export default () => {
heading: 'Join the community',
subheading: 'Discover what our community has to say about their Supabase experience.',
ctas: (
<>
<Button asChild size="small" iconRight={<MessageCircle size={14} />} type="default">
<Link
href={'https://github.com/supabase/supabase/discussions'}
target="_blank"
tabIndex={-1}
onClick={() =>
sendTelemetryEvent({
action: 'homepage_github_discussions_button_clicked',
})
}
>
GitHub discussions
</Link>
</Button>
<Button asChild type="default" size="small" iconRight={<MessageCircle size={14} />}>
<Link
href={'https://discord.supabase.com/'}
target="_blank"
tabIndex={-1}
onClick={() =>
sendTelemetryEvent({
action: 'homepage_discord_button_clicked',
})
}
>
Discord
</Link>
</Button>
</>
<Button asChild type="default" size="small" icon={<IconDiscord />}>
<Link
href={'https://discord.supabase.com/'}
target="_blank"
tabIndex={-1}
onClick={() =>
sendTelemetryEvent({
action: 'homepage_discord_button_clicked',
})
}
>
Join us on Discord
</Link>
</Button>
),
tweets: tweets.slice(0, 18),
},
Expand Down
46 changes: 22 additions & 24 deletions apps/www/data/solutions/beginners.tsx
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
import { CubeIcon } from '@heroicons/react/outline'
import { Check, Sparkles, Timer } from 'lucide-react'
import dynamic from 'next/dynamic'
import Link from 'next/link'
import { Check, Sparkles, Timer } from 'lucide-react'
import { CubeIcon } from '@heroicons/react/outline'
import { Button, cn, Image } from 'ui'
import { Button, cn, IconDiscord, Image } from 'ui'

import MainProducts from '../MainProducts'
import { frameworks } from 'components/Hero/HeroFrameworks'
import MainProducts from '../MainProducts'

import type { TwoColumnsSectionProps } from '~/components/Solutions/TwoColumnsSection'
import type { MPCSectionProps } from 'components/Solutions/MPCSection'
import type { PlatformSectionProps } from 'components/Solutions/PlatformSection'
import type { TwitterSocialSectionProps } from 'components/TwitterSocialSection'
import type { TwoColumnsSectionProps } from '~/components/Solutions/TwoColumnsSection'
import {
FrameworkLink,
getEditors,
type FeaturesSection,
type HeroSection,
type Metadata,
} from './solutions.utils'
import type { MPCSectionProps } from 'components/Solutions/MPCSection'

import { PRODUCT_SHORTNAMES } from 'shared-data/products'
import { tweets } from 'shared-data'
import { useBreakpoint } from 'common'
import { useSendTelemetryEvent } from 'lib/telemetry'
import { tweets } from 'shared-data'
import { PRODUCT_SHORTNAMES } from 'shared-data/products'

const AuthVisual = dynamic(() => import('components/Products/AuthVisual'))
const ComputePricingCalculator = dynamic(
Expand Down Expand Up @@ -480,22 +480,20 @@ const data: () => {
heading: 'Fun projects built with Supabase',
subheading: 'Discover what our community has to say about their Supabase experience.',
ctas: (
<>
<Button asChild size="small" type="default">
<Link
href="https://github.com/supabase/supabase/discussions"
target="_blank"
tabIndex={-1}
>
GitHub discussions
</Link>
</Button>
<Button asChild type="default" size="small">
<Link href={'https://discord.supabase.com/'} target="_blank" tabIndex={-1}>
Discord
</Link>
</Button>
</>
<Button asChild type="default" size="small" icon={<IconDiscord />}>
<Link
href={'https://discord.supabase.com/'}
target="_blank"
tabIndex={-1}
onClick={() =>
sendTelemetryEvent({
action: 'homepage_discord_button_clicked',
})
}
>
Join us on Discord
</Link>
</Button>
),
tweets: tweets.slice(0, 18),
},
Expand Down
2 changes: 1 addition & 1 deletion apps/www/pages/support-policy.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Limited technical support is accessible for Supabase customers utilizing paid Su

Supabase support staff will only address support requests received through the official channels mentioned earlier. However, community channels may exist for peer-to-peer support and discussions. This is support provided by volunteers that contribute to the Supabase community.

For questions related to debugging code, we recommend reaching out on **[GitHub Discussions](https://github.com/supabase/supabase/discussions)** or on **[Discord](https://discord.gg/rxTfewPvys)**. The community is made up of experienced developers who may be able to provide guidance and support with code-related issues.
For questions related to debugging code, we recommend reaching out to our **[Discord community](https://discord.supabase.com)**. The community is made up of experienced developers who may be able to provide guidance and support with code-related issues.

To get the most helpful response from the community, providing precise and detailed information about your problem and any error messages you may be encountering is important. Be sure to **include any relevant code snippets explaining how to reproduce** the issue in your message.

Expand Down
12 changes: 0 additions & 12 deletions packages/common/telemetry-constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -700,17 +700,6 @@ export interface HomepageGitHubButtonClickedEvent {
action: 'homepage_github_button_clicked'
}

/**
* User clicked the GitHub Discussions button in the homepage community section.
*
* @group Events
* @source www
* @page /
*/
export interface HomepageGitHubDiscussionsButtonClickedEvent {
action: 'homepage_github_discussions_button_clicked'
}

/**
* User clicked the Discord button in the homepage community section.
*
Expand Down Expand Up @@ -2069,7 +2058,6 @@ export type TelemetryEvent =
| WwwPricingPlanCtaClickedEvent
| EventPageCtaClickedEvent
| HomepageGitHubButtonClickedEvent
| HomepageGitHubDiscussionsButtonClickedEvent
| HomepageDiscordButtonClickedEvent
| HomepageCustomerStoryCardClickedEvent
| HomepageProjectTemplateCardClickedEvent
Expand Down
Loading