diff options
Diffstat (limited to 'docs/pages/pack/docs/comparisons/BenchmarksCallout.tsx')
| -rw-r--r-- | docs/pages/pack/docs/comparisons/BenchmarksCallout.tsx | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/docs/pages/pack/docs/comparisons/BenchmarksCallout.tsx b/docs/pages/pack/docs/comparisons/BenchmarksCallout.tsx new file mode 100644 index 0000000..98e33e4 --- /dev/null +++ b/docs/pages/pack/docs/comparisons/BenchmarksCallout.tsx @@ -0,0 +1,14 @@ +import Link from "next/link"; +import Callout from "../../../../components/Callout"; + +export default function BenchmarksCallout() { + return ( + <Callout type="info"> + Want to know more about Turbopack's benchmarking process and + philosophy?{" "} + <Link href="../benchmarks" className="nx-underline"> + Learn more about Turbopack's benchmarking suite. + </Link> + </Callout> + ); +} |
