Skip to content

Project View

Charles Doucet edited this page Feb 4, 2025 · 4 revisions

<- Back to views

This template is used for all project presentations. It allows you to include multiple paragraphs and screenshots. If possible, projects should begin with a short looping video (with autoplay enabled) to add movement and capture attention from the first line rendered (right after the project’s title).

Content Format

Projects’ content must conform to the exported type ProjectContent in order to guarantee a uniform format across all project pages. The view function will ensure that each element is rendered in the correct sequence.

At the moment, there are no restrictions on the number of paragraphs or images in the gallery.

export type ProjectContent = {
    readonly name: string;
    readonly tagline: string;
    readonly path: string;

    readonly paragraphs: ReadonlyArray<string>;
    readonly heroVideo: ReadonlyArray<string>;
    readonly imageGallery: ReadonlyArray<string>;
}
Clone this wiki locally