// ******************************************************************************************************************************************************
// * By Dr. Roy C. Davies, March 2023, roy.c.davies@ieee.org
// ******************************************************************************************************************************************************
const code = {
nag : `
Look, I am a nag!
`,
title : `
Welcome to the nag moduleLook, I am a nag!
`,
fixed : `
Look, I am a fixed nag!Look, I am a bottom-fixed nag!
`,
overlay : `
Welcome to the nag moduleLook, I am a top overlay nag!Welcome to the nag moduleLook, I am a bottom overlay nag!
`,
group : `
First nagSecond nagThird nag
`,
colored : `
{#each ["red", "orange", "yellow", "olive", "green", "teal", "blue", "violet", "purple", "pink", "brown", "black"] as color}
{color.charAt(0).toUpperCase() + color.slice(1)}
{/each}
`,
inverted : `
{#each ["", "red", "orange", "yellow", "olive", "green", "teal", "blue", "violet", "purple", "pink", "brown", "black"] as color}
{color===""?"no color":color.charAt(0).toUpperCase() + color.slice(1)}
{/each}
`,
size : `
{#each ["mini", "tiny", "small", "large", "big", "huge", "massive"] as size}
{size.charAt(0).toUpperCase() + size.slice(1)}
{/each}
`,
cookie : `
We use cookies to ensure you get the best experience on our website
`
}
export default code;