2 min read
Getting started

Research Outpost is reader-supported. As an Amazon Associate and partner of various affiliate networks, we may earn a commission from qualifying purchases made through our links at no extra cost to you.

The basic configuration of Research Outpost is pretty simple.

Edit src/consts.ts

Customize the base site

// src/consts.ts

export const SITE: Site = {
  NAME: "Research Outpost",
  EMAIL: "info@researchoutposthq.com",
  NUM_POSTS_ON_HOMEPAGE: 3,
  NUM_PROJECTS_ON_HOMEPAGE: 3,
};
FieldReqDescription
NAMEYesDisplayed in header and footer. Used in SEO and RSS.
EMAILYesDisplayed in contact section.
NUM_POSTSYesLimit num of posts on home page.
NUM_PROJECTSYesLimit num of projects on home page.

Customize your page metadata

// src/consts.ts

export const HOME: Metadata = {
  TITLE: "Home",
  DESCRIPTION: "Research Outpost is a data-driven laboratory for digital marketing and technology research.",
};
FieldReqDescription
TITLEYesDisplayed in browser tab. Used in SEO and RSS.
DESCRIPTIONYesUsed in SEO and RSS.

Customize your social media

// src/consts.ts

export const SOCIALS: Socials = [];