| 123456789101112131415161718192021222324252627282930313233 |
- import { ExternalLink, HelpCircle } from 'lucide-react'
- import Link from 'next/link'
- import { Alert, AlertDescription, AlertTitle, Button } from 'ui'
- export const IPV4SuggestionAlert = () => {
- return (
- <Alert variant="default">
- <HelpCircle strokeWidth={2} />
- <AlertTitle>Connection issues?</AlertTitle>
- <AlertDescription className="grid gap-3">
- <p>
- Having trouble connecting to your project? It could be related to our migration from
- PGBouncer and IPv4.
- </p>
- <p>
- Please review this GitHub discussion. It's up to date and covers many frequently asked
- questions.
- </p>
- <p>
- <Button asChild type="default" icon={<ExternalLink strokeWidth={1.5} />}>
- <Link
- target="_blank"
- rel="noreferrer"
- href="https://github.com/orgs/briven/discussions/17817"
- >
- PGBouncer and IPv4 Deprecation #17817
- </Link>
- </Button>
- </p>
- </AlertDescription>
- </Alert>
- )
- }
|