--- layout: layouts/default.njk title: Home description: Building a better future together ---

Welcome to Rebuild

We're building a community of makers, creators, and innovators working together to shape a better future.

Our Approach

Through collaboration, shared learning, and collective action, we're reimagining how we build together.

Featured Builders

{% if builders and builders.length > 0 %}
{% for builder in builders | limit(3) %} {% set title = builder.name %} {% set description = builder.description %} {% set image = builder.imageUrl %} {% set link = builder.link %} {% set tags = builder.tags %} {% include "components/card.njk" %} {% endfor %}
{% else %}

No builders available yet. Add some through the Notion database!

{% endif %}
{% set text = "View Directory" %} {% set url = "/directory/" %} {% set variant = "primary" %} {% include "components/buttons.njk" %}

Recent insights

{% if collections.insights and collections.insights.length > 0 %}
{% for post in collections.insights | limit(3) %} {% set title = post.data.title %} {% set description = post.data.excerpt %} {% set link = post.url %} {% set tags = post.data.tags %} {% include "components/card.njk" %} {% endfor %}
{% else %}

No journal entries yet. Create some in the src/content/journal/ directory!

{% endif %}
{% set text = "View All Entries" %} {% set url = "/insights/" %} {% set variant = "secondary" %} {% include "components/buttons.njk" %}

Next Gathering

{% set nextEvent = events.events[0] %} {% if nextEvent %}

{{ nextEvent.title }}

{{ nextEvent.location }} · {{ nextEvent.date | dateFormat }}

{% set targetDate = nextEvent.date %} {% set title = "Time until " + nextEvent.title %} {% include "components/countdown.njk" %}
{% set text = "View Event Details" %} {% set url = "/gatherings/" %} {% set variant = "outline" %} {% include "components/buttons.njk" %}
{% endif %}