import Link from 'next/link' import { Card } from '@/libs/frontend-ui-primitives' import type { ExplorerFeatureAction, ExplorerFeaturePage } from '@/data/explorerOperations' function ActionLink({ action }: { action: ExplorerFeatureAction }) { const className = 'inline-flex items-center text-sm font-semibold text-primary-600 hover:underline' const label = `${action.label} ->` if (action.external) { return ( {label} ) } return ( {label} ) } export default function FeatureLandingPage({ page }: { page: ExplorerFeaturePage }) { return (
{page.eyebrow}

{page.title}

{page.description}

{page.note ? (

{page.note}

) : null}
{page.actions.map((action) => (
{action.title}

{action.description}

))}
) }