Skip to content
@stagehq

Stage

Next-gen developer portfolio that helps you showcase your projects, skills, and experience.

image

Stage, API-based developer portfolio

Stage is an API-based developer portfolio platform that helps developers showcase their projects, skills, and experience to potential employers. With an ever-growing collection of building blocks, developers can personalize their portfolios to stand out from the crowd.

Where to contribute:

Stage Sites Examples

Our Community is already using Stage as their personal Sites:

Motivation

Developers need to showcase their work and skills in a way that's easy to understand and visually appealing to potential employers. However, building a portfolio website from scratch can be time-consuming and detract from the actual work that developers want to showcase. GetStage aims to simplify this process by providing an API-based platform that connects to various sources of content and social media to create a beautiful and always up-to-date site.

Features

Connect your content ✍️:

With just one click, you can connect your content to Stage. Our powerful block API allows you to extend your content even further.

image

Build your own content blocks 🧩:

You can build your own blocks and publish them to the community.

import { Block, List } from "@stagehq/ui";
import * as API from "@stagehq/api";
import { useEffect, useState } from "react";

export default function Extension() {
  const [data, setData] = useState([]);
  
  useEffect(() => {
    const fetchData = async () => {
      const response = await API.gh.get("/repos/owner/repo/issues");
      setData(response.data);
    };
    fetchData();
  }, []);

  return (
    <Block
      title="Title"
      imagePath="https://source.unsplash.com/random/400x200"
      size={2}
    >
      <List>
        {data.map((item) => (
          <List.Item key={item.id} title={item.title} />
        ))}
      </List>
    </Block>
  );
};

Analyze your growth 🌱 (soon):

Get a clear picture of your growth with detailed analytics. Understand your audience and make better decisions. (Not in place, yet)

Popular repositories

  1. backstage backstage Public

    The backstage – where the magic happens.

    TypeScript 5 1

  2. ui ui Public

    Design system for Stage.

    TypeScript 1

  3. .github .github Public

Repositories

Showing 3 of 3 repositories

Top languages

Loading…

Most used topics

Loading…