Sections

Feature Timeline Flow

Step-by-step product architecture workflow section with connected glowing nodes and code examples.

featurestimelineworkflowstepsarchitecture
Live Preview
Step-by-Step Workflow

From Idea to Production in 3 Simple Steps

Streamline your frontend engineering lifecycle with an intuitive, pre-tested architecture.

01
Install & Setup

One Command Installation

Add astro-component-kit to your Astro project with npm. Zero complex configuration files or build tool plugins required.

npm install astro-component-kit
02
Compose & Theme

Import Modular Components

Import accessible cards, navigation bars, interactive inputs, and 3D scenes directly into your Astro frontmatter with strict TypeScript typings.

import { GlassCard, StatCard } from 'astro-component-kit';
03
Build & Deploy

Deploy Anywhere at 100/100 Speed

Generate static pre-rendered HTML with zero runtime JavaScript. Deploy effortlessly to Coolify, Vercel, Cloudflare Pages, or Docker.

npm run build && coolify deploy

Usage

Copy and paste this code into your Astro page:

astro
---
import { FeatureTimelineFlow } from 'astro-component-kit';
---

<FeatureTimelineFlow />
--- import { FeatureTimelineFlow } from 'astro-component-kit'; --- <FeatureTimelineFlow />

Manual Installation

If you are not using the npm package, create a new file src/components/sections/FeatureTimelineFlow.astro and paste the following code:

astro
---
import { FeatureTimelineFlow } from 'astro-component-kit';
---

<FeatureTimelineFlow 
  badge="Step-by-Step Workflow"
  title="From Idea to Production in 3 Simple Steps"
/>
--- import { FeatureTimelineFlow } from 'astro-component-kit'; --- <FeatureTimelineFlow badge="Step-by-Step Workflow" title="From Idea to Production in 3 Simple Steps" />