Hello World

September 2, 2024 (1mo ago)

Welcome to My Portfolio Website

Hello and welcome to my portfolio website! 🎉 I'm excited to have you here and share a bit about myself, my work, and the projects I've been involved in. This website is a reflection of my journey as a developer, and I hope you find it informative and engaging.

About Me

My name is Cand, and I'm a passionate developer with a strong background in NextJs. Since graduating with a Bachelor's Degree in Education (S.Pd) in Mathematics from Universitas Negeri Manado in 2017, I've been honing my skills and working on various projects that have helped me grow both professionally and personally.

What You'll Find Here

On this website, you'll find:

  • My Projects: A showcase of the projects I've worked on, including descriptions, technologies used, and what I've learned from each.
  • Blog Posts: My thoughts, ideas, and tutorials on topics related to development, programming, and the tech industry.
  • Contact Information: Ways to get in touch with me if you're interested in working together or just want to say hi!

Let's Start with a Simple Hello

To kick things off, here's a simple example of JavaScript code that prints "Hello, World!" to the console:

// This is a simple JavaScript code to say hello
function sayHello() {
    console.log("Hello, World!");
}
 
// Call the function to display the message
sayHello();