From the course: Learning Nuxt.js
Unlock the full course today
Join today to access over 24,400 courses taught by industry experts.
Solution: Create your first page
From the course: Learning Nuxt.js
Solution: Create your first page
(upbeat music) - [Narrator] So, how did it go? Were you able to solve the challenge? Let's see how I solved this. First I'll navigate to VS code and inside the pages directory add a new page called about.vue. And in here, we want to have a template where we would add name and bio. So for that, I would add a div and a heading with my name and paragraph with my bio. Now we have the template set up, we would run the common MPM run dev to start up to local development mode. Now if we navigate to the browser, we would see, like, very minimal looking page with what I added the H one and the paragraph. Let's add a bit of CSS to this to make it look more presentable. So I'll close this and add a style section here. And in here I will add a class called container and style that to have, maybe we just want to increase the font size for now. So we would set that text pixels and make the texts centered. So align the…