# h1
## h2
- bullets
- 2
1. number 1
2. number 2
3. number 3
> [!NOTE] Title
> Contents
- [ ] check box
- [x] checked ✅ 2025-07-30
```js
// Smooth scroll on internal link click
document.querySelectorAll('a.internal-link').forEach(link => {
link.addEventListener('click', () => {
window.scrollTo({ top: 0, behavior: 'smooth' });
});
});
// Auto-title page from first H1
const h1 = document.querySelector('h1');
if (h1) {
document.title = h1.textContent.trim();
}
```
---
this is home
here is [[Info]]
https://rive.app/s/h8dKpgshZ02TOez8U21wCA/
<canvas id="happy-meeple" class="rive-animation-canvas"></canvas>