mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2024-12-26 14:59:14 +01:00
17 lines
387 B
TypeScript
17 lines
387 B
TypeScript
import author from "./author";
|
|
import menu from "./menu";
|
|
|
|
export default {
|
|
site: {
|
|
siteMetadata: {
|
|
url: "https://rickvanlieshout.com",
|
|
title: "Rick van Lieshout ~ Mastermindzh",
|
|
subtitle: "The thoughts, discoveries and murmurings of a Software enthusiast",
|
|
copyright: "All rights reserved.",
|
|
postsPerPage: 7,
|
|
author,
|
|
menu,
|
|
},
|
|
},
|
|
};
|