blob: b668153ed553d6888408c0461cffa9d48ca63f6f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { PACK_HOME_FEATURES } from "../../../content/features";
import { FeaturesBento } from "../home-shared/FeaturesBento";
export function PackFeatures() {
return (
<FeaturesBento
header="Why Turbopack?"
body="With incremental behavior and adaptable bundling strategies, Turbopack provides a fast and flexible development experience for apps of any size."
features={PACK_HOME_FEATURES}
/>
);
}
|