You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`scripts/mdx-to-md.mjs`|**The transformer.** Exports `transformMdx()` + parsing helpers and `COMPONENT_REGISTRY`. Zero-dependency ES module. |
70
70
|`scripts/component-handlers/data-tables.mjs`| Handler for `<JsonTable>` — resolves a `static/json/*.json` file into a Markdown table. |
71
71
|`scripts/component-handlers/integrations.mjs`| Handler for `<IntegrationsGrid>` — reads `src/components/IntegrationsGrid/integrations-data.json`, filters by the `defaultSdks` prop, and emits a Markdown list. |
72
-
|`scripts/component-handlers/home-page-hero.mjs`| Handler for `<HomePageHero>`— emits the homepage hero's headline, intro, and link cards. Content is mirrored from the component (no shared data file). |
72
+
|`scripts/component-handlers/hero.mjs`| Handler for the homepage hero cards (`<ActionCard>`/ `<CommunityCard>`) — parses `title`/`href` props and children into a Markdown link-list item. Copy lives in `docs/index.mdx`; layout wrappers strip generically. |
73
73
|`scripts/component-handlers/cards.mjs`| Handler for `<QuickstartCards>` / `<PatternCards>` — parses the inline `items={[{href,title,description}]}` prop into a Markdown link list. |
74
74
|`scripts/audit-components.mjs`| Inventory/coverage tool. Scans all docs, reports per-component coverage, writes `COMPONENT_REGISTRY.md` at the repo root. |
75
75
|`src/components/LLMActions/LLMActions.tsx`| On-page actions (Copy, View as Markdown, Open in ChatGPT/Claude). Points at the generated `/<path>.md` (not the raw MDX). |
@@ -118,7 +118,8 @@ Each component maps to a strategy in `COMPONENT_REGISTRY` (in `scripts/mdx-to-md
118
118
|`SetupSteps` / `SetupStep`|`setup-steps` / `setup-step`| Prose children plus code extracted from the `code={…}` JSX prop |
119
119
|`JsonTable`|`json-table`| Markdown table resolved from the referenced `static/json/*.json`|
120
120
|`IntegrationsGrid`|`integrations-grid`| Markdown list resolved from `integrations-data.json`, filtered by the `defaultSdks` prop |
121
-
|`HomePageHero`|`home-page-hero`| Homepage hero's headline, intro paragraphs, and link cards (content mirrored from the component) |
Copy file name to clipboardExpand all lines: docs/index.mdx
+46-2Lines changed: 46 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,50 @@ hide_title: true
7
7
description: Official docs for Temporal, the open source Durable Execution platform for crash-proof applications. Guides, SDKs, and references for reliable workflows.
<HeroHeadline>Build applications that never fail</HeroHeadline>
32
+
33
+
Temporal is an open-source platform for building reliable applications. Temporal delivers crash-proof execution by guaranteeing that applications resume exactly where they left off after crashes, network failures, or infrastructure outages, whether that happens seconds, days, or even years later.
34
+
35
+
Temporal enables developers to focus on building features that drive the business while ensuring that mission-critical processes such as order fulfillment, customer onboarding, and payment processing never fail or disappear, regardless of what goes wrong.
36
+
37
+
<HeroCtahref="/quickstarts">Quickstart</HeroCta>
38
+
39
+
</HeroContent>
40
+
41
+
<HeroActions>
42
+
<ActionCardhref="/quickstarts"icon="bolt"iconAlt="Lightning icon"title="Quickstart">Setup your local and run a Hello World workflow.</ActionCard>
43
+
<ActionCardhref="/develop"icon="code"iconAlt="Code icon"title="Developer Guide">Dive into everything you need to know about building Temporal workflows.</ActionCard>
44
+
<ActionCardhref="/production-deployment"icon="rocket"iconAlt="Rocket icon"title="Deploy your Workflows">Deploy your Temporal Application to your environment. Self-Host the Temporal Service or use Temporal Cloud.</ActionCard>
45
+
<ActionCardhref="https://temporal.io/cloud"icon="cloud"iconAlt="Cloud icon"title="Get started for free with $1000 in credits"><spanclassName="linkify">Sign up for Temporal Cloud</span> and let us host the Temporal Service for you.</ActionCard>
46
+
</HeroActions>
47
+
48
+
</HeroSection>
49
+
50
+
<CommunityCards>
51
+
<CommunityCardhref="https://temporal.io/slack"icon="slack"iconAlt="Slack"title="Slack Community">Join us on <ahref="https://temporal.io/slack">temporal.io/slack</a> and say hi or ask us a question.</CommunityCard>
52
+
<CommunityCardhref="https://community.temporal.io"icon="forum"iconAlt="Message"title="Developer Forum"><ahref="https://community.temporal.io">Find out</a> if your question has already been asked.</CommunityCard>
53
+
<CommunityCardhref="https://learn.temporal.io/courses/"icon="learn"iconAlt="Education"title="Learn it all"><ahref="https://learn.temporal.io/courses/">Master Temporal</a> with our courses and tutorials.</CommunityCard>
0 commit comments