aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/docs/components/pages/TRPG-home/PackFeatures.tsx
blob: a55f96db75ac7a7eaeb50393c43ba6ddb0ceb49d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { PACK_HOME_FEATURES } from "../../../content/features";
import { FeaturesBento } from "../home-shared/FeaturesBento";

export function PackFeatures() {
  return (
    <FeaturesBento
      header="Why HydroRollCore?
      为什么选择水系核心?"
      body="水系核心基于规则包运行,可自定义程度高,且运行速率快。"
      features={PACK_HOME_FEATURES}
    />
  );
}