Hi, I'm Nick

I'm a 22-year-old economics student based in Toronto driven by a genuine curiosity about how things work from the ground up. I ask a lot of questions, constantly asking why, and I'm not satisfied with surface-level answers.
I've built experience across manufacturing, marketing, sales, and tech, which has shaped a practical and grounded perspective on the world. I research what interests me, form my own views, and occasionally write about them. This is where that ends up.

const ARTICLES = [ { title: 'The Idea of a Brand Is Splitting. The Middle Is Getting Crushed.', sub: 'As AI takes over more decisions, brand doesn\'t die — it breaks into two completely different games. Most people are playing like it\'s still one.', url: 'https://nickxtrent.substack.com/p/the-idea-of-a-brand-is-splitting?r=4poxvn', img: 'https://nicktrent.ca/assets/images/image03.jpg?v=4872e89d' }, { title: 'Canada - Smart Enough To Invent It, Not Enough To Keep It.', sub: 'How a country of inventors became a country of suppliers.', url: 'https://nickxtrent.substack.com/p/canada-smart-enough-to-invent-it?r=4poxvn', img: 'https://nicktrent.ca/assets/images/image02.jpg?v=4872e89d' }, { title: 'Dissecting Human Attention & Our Native Ability To Think.', sub: 'In the age of infinite content, the rarest thing left is an original thought that\'s actually yours.', url: 'https://nickxtrent.substack.com/p/dissecting-human-attention-and-our?r=4poxvn', img: 'https://nicktrent.ca/assets/images/image01.jpg?v=4872e89d' } ]; const grid = document.querySelector('.nt-grid'); ARTICLES.forEach((a) => { const card = document.createElement('a'); card.className = 'nt-card'; card.href = a.url; card.target = '_blank'; card.rel = 'noopener'; const wrap = document.createElement('div'); wrap.className = 'nt-img-wrap'; if (a.img) { const img = document.createElement('img'); img.src = a.img; img.alt = ''; img.loading = 'lazy'; wrap.appendChild(img); } else { const ph = document.createElement('div'); ph.className = 'nt-no-img'; ph.textContent = 'IMAGE'; wrap.appendChild(ph); } const label = document.createElement('div'); label.className = 'nt-label'; label.textContent = 'Article'; const title = document.createElement('div'); title.className = 'nt-title'; title.textContent = a.title; const sub = document.createElement('div'); sub.className = 'nt-sub'; sub.textContent = a.sub; const read = document.createElement('div'); read.className = 'nt-read'; read.innerHTML = 'Read  →'; card.appendChild(wrap); card.appendChild(label); card.appendChild(title); card.appendChild(sub); card.appendChild(read); grid.appendChild(card); });