Welcome to my new website! I built this using Astro and Tailwind CSS.
Code Snippets
Here is a snippet of code to show how syntax highlighting works:
function greet(name) {
console.log(`Hello, ${name}!`);
}
greet('World');
And here is some Python:
def fibonacci(n):
if n <= 1:
return n
else:
return fibonacci(n-1) + fibonacci(n-2)
print([fibonacci(i) for i in range(10)])
Stay tuned for more updates!