06. Options & Settings

In this section, we will take a look at all other options you can find in the template config inside the file js/core.js. With that, you can configure features to fit your needs.
const anita_config = {

    ...

     --- Content Features --- 
    // Page background Spotlight Effect
    spotlight: true,

    // Back to Top Button
    back2top: true,

    // Interractive Cursor/span>
    int_cursor: true,

     --- Protection Options --- 
    // Right Click Protection
    disable_right_click: true,

    // Protect Images from Drag
    image_drag_protection: true,

     --- Localization --- 
    l10n: {
        // Footer Copyright string
        copyright : 'Copyright © 2022. All Rights Reserved.',

        // The message that appears when visitors try to open context menu
        rcp_message : 'Context menu is not allowed on this website',

        // The Button Label for Context Menu blocker
        rcp_button : 'Got It!',

        // Back to Top Label
        b2t_label : 'Back to Top',
    }
}

Next Chapter