atuandev
Back to Blog

Hello World

Hello World

Welcome to My Blog!

This is my first blog post using Velite and Next.js. I'm excited to share my thoughts and experiences with you.

Code Syntax Highlighting

Here's an example of syntax highlighting with rehype-pretty-code:

function greet(name: string): string {
  return `Hello, ${name}!`;
}
 
const message = greet("World");
console.log(message);

JavaScript Example

const numbers = [1, 2, 3, 4, 5];
const doubled = numbers.map(n => n * 2);
console.log(doubled); // [2, 4, 6, 8, 10]

CSS Example

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

What's Next?

I'll be writing about:

  • Web Development - Tips and tricks for modern web development
  • TypeScript - Best practices and patterns
  • React & Next.js - Building performant applications

Stay tuned for more content!