blob: 44997250bd23f5aac2853503f0e1ccbdda9f7b1f (
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 RepoFeatures() {
return (
<FadeIn className="py-16 md:py-24 lg:py-32">
<FeaturesBento
header="Why Turborepo?"
body="Turborepo reimagines build system techniques used by Facebook and Google to remove maintenance burden and overhead."
features={REPO_HOME_FEATURES}
/>
</FadeIn>
);
}
|