aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/docs/components/QuickStart.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'docs/components/QuickStart.tsx')
-rw-r--r--docs/components/QuickStart.tsx89
1 files changed, 89 insertions, 0 deletions
diff --git a/docs/components/QuickStart.tsx b/docs/components/QuickStart.tsx
new file mode 100644
index 0000000..040871e
--- /dev/null
+++ b/docs/components/QuickStart.tsx
@@ -0,0 +1,89 @@
+import {
+ BookOpenIcon,
+ CloudDownloadIcon,
+ CloudUploadIcon,
+ LightBulbIcon,
+ LightningBoltIcon,
+ PencilIcon,
+ ServerIcon,
+ SparklesIcon,
+} from "@heroicons/react/outline";
+import { DetailedFeatureLink } from "./Feature";
+import Turbo from "./logos/Turbo";
+
+export const QuickStartArea = () => {
+ return (
+ <div className="grid grid-cols-1 mt-12 gap-x-6 gap-y-12 sm:grid-cols-2 lg:mt-16 lg:gap-x-8 lg:gap-y-12">
+ <DetailedFeatureLink
+ feature={{
+ Icon: PencilIcon,
+ description: `Add Turborepo to any JavaScript or TypeScript project in minutes.`,
+ name: "Add to existing project",
+ }}
+ href="/repo/docs/getting-started/add-to-project"
+ ></DetailedFeatureLink>
+ <DetailedFeatureLink
+ feature={{
+ Icon: SparklesIcon,
+ description: `Build a brand-new monorepo with shared packages powered by Turborepo.`,
+ name: "Create a new monorepo",
+ }}
+ href="/repo/docs/getting-started/create-new"
+ ></DetailedFeatureLink>
+ <DetailedFeatureLink
+ feature={{
+ Icon: ServerIcon,
+ description: `Incrementally add Turborepo to your existing monorepo codebase.`,
+ name: "Add to existing monorepo",
+ }}
+ href="/repo/docs/getting-started/existing-monorepo"
+ ></DetailedFeatureLink>
+ </div>
+ );
+};
+
+export const MonoreposArea = () => {
+ return (
+ <div className="grid grid-cols-1 mt-12 gap-x-6 gap-y-12 sm:grid-cols-2 lg:mt-16 lg:gap-x-8 lg:gap-y-12">
+ <DetailedFeatureLink
+ feature={{
+ Icon: LightBulbIcon,
+ description: `Understand why monorepos don't scale - and why Turborepo is the solution.`,
+ name: "Why Turborepo?",
+ }}
+ href="/repo/docs/core-concepts/monorepos"
+ ></DetailedFeatureLink>
+ <DetailedFeatureLink
+ feature={{
+ Icon: BookOpenIcon,
+ description: `Learn the basics of monorepos before you dive in to Turborepo.`,
+ name: "Read the Monorepo Handbook",
+ }}
+ href="/docs/handbook"
+ ></DetailedFeatureLink>
+ </div>
+ );
+};
+
+export const LearnMoreArea = () => {
+ return (
+ <div className="grid grid-cols-1 mt-12 gap-x-6 gap-y-12 sm:grid-cols-2 lg:mt-16 lg:gap-x-8 lg:gap-y-12">
+ <DetailedFeatureLink
+ feature={{
+ Icon: CloudUploadIcon,
+ description: `Turborepo remembers the output of any task you run - and can skip work that's already been done.`,
+ name: "Never do the same work twice",
+ }}
+ href="/repo/docs/core-concepts/caching"
+ />
+ <DetailedFeatureLink
+ feature={{
+ Icon: LightningBoltIcon,
+ description: `The way you run your tasks is probably not optimized. Turborepo speeds them up with smart scheduling, minimising idle CPU's.`,
+ name: "Maximum Multitasking",
+ }}
+ href="/repo/docs/core-concepts/monorepos/running-tasks"
+ ></DetailedFeatureLink>
+ </div>
+ );
+};