moon indicating dark mode
sun indicating light mode

Main Title Will Go Here

Hello, world!

Here will a React component go:

Here will a live code example go:

const onClick = () => {
  alert("You opened me");
};
render(<button onClick={onClick}>Alohomora!</button>);

Here will a normal code block go:

(function() {

var cache = {};
var form = $('form');
var minified = true;

var dependencies = {};

var treeURL = 'https://api.github.com/repos/PrismJS/prism/git/trees/gh-pages?recursive=1';
var treePromise = new Promise(function(resolve) {
    $u.xhr({
        url: treeURL,
        callback: function(xhr) {
            if (xhr.status < 400) {
                resolve(JSON.parse(xhr.responseText).tree);
            }
        }
    });
});