blob: 466c0ae89e53a4ac689e67250fecd706f2a9bc36 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import { REPO_HOME_FEATURES } from "../../../content/features";
import { FadeIn } from "../home-shared/FadeIn";
import { FeaturesBento } from "../home-shared/FeaturesBento";
export function AIFeatures() {
return (
<FadeIn className="py-16 md:py-24 lg:py-32">
<FeaturesBento
header="Why AI?"
body="AI balabala..."
features={REPO_HOME_FEATURES}
/>
</FadeIn>
);
}
|