import { createFileRoute } from "@tanstack/react-router"; import { SearchConsoleConnectionCard } from "@/client/features/gsc/SearchConsoleConnectionCard"; import { GoogleAnalyticsConnectionCard } from "@/client/features/ga4/GoogleAnalyticsConnectionCard"; export const Route = createFileRoute( "/_project/p/$projectId/settings/integrations", )({ component: ProjectIntegrationsRoute, }); function ProjectIntegrationsRoute() { const { projectId } = Route.useParams(); return (
{/* The ids are the targets old #search-console / #google-analytics deep links are redirected to from the settings index. */}

Search Console

Analytics } />
); }