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: "[email protected]",
NUM_POSTS_ON_HOMEPAGE: 3,
NUM_PROJECTS_ON_HOMEPAGE: 3,
};
| Field | Req | Description |
|---|---|---|
| NAME | Yes | Displayed in header and footer. Used in SEO and RSS. |
| Yes | Displayed in contact section. | |
| NUM_POSTS | Yes | Limit num of posts on home page. |
| NUM_PROJECTS | Yes | Limit 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.",
};
| Field | Req | Description |
|---|---|---|
| TITLE | Yes | Displayed in browser tab. Used in SEO and RSS. |
| DESCRIPTION | Yes | Used in SEO and RSS. |
Customize your social media
// src/consts.ts
export const SOCIALS: Socials = [];