Skip to content
Merged
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
8 changes: 8 additions & 0 deletions app/platform-redirect/page.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import {Metadata} from 'next';
import {redirect} from 'next/navigation';

import {Alert} from 'sentry-docs/components/alert';
Expand All @@ -7,6 +8,13 @@ import {SmartLink} from 'sentry-docs/components/smartLink';
import {extractPlatforms, getDocsRootNode, nodeForPath} from 'sentry-docs/docTree';
import {setServerContext} from 'sentry-docs/serverContext';

export const metadata: Metadata = {
robots: 'noindex',
title: 'Platform Specific Content',
description:
'The page you are looking for is customized for each platform. Select your platform below and we’ll direct you to the most specific documentation on it.',
};

export default async function Page({
searchParams: {next = '', platform},
}: {
Expand Down
Loading