Welcome to CoolEasy!

Here is a form for no reason other than to demonstrate using a form with CoolEasy.

Here is a picture. You can put pictures and static files into the /public folder

Here is some stuff made into HTML from Markdown.

The styling of the markdown code blocks can easily altered with CSS.

Rust code
fn add() {
    let a = 5;
    let b = 10;
    let sum = a + b;
    println!("Sum of a and b = {}", sum);
}
TypeScript React code
interface MessageProps {
    text: string;
    important: boolean;
  }
   
  function Message({ text, important }: MessageProps) {
    return (
      <div>
        {important ? 'Important message: ' : 'Regular message: '}
        {text}
      </div>
    );
  }

Here is a link to the about page.