React

Creating Mobile App with Expo(Part 1)

Posted on:

To create a mobile application with expo we need to visit expo.dev documentation first. Now in the documentation we can see that we need to use npx create-expo-app first_app . Now once we run this command, this command will create the expo application named as first_app. You can change the […]

React

Creating pages in GatsbyJS Website

Posted on:

Once we have created a layout now its time to create a pages, we will create all the pages in pages directory. In our website there will four main pages Index,About,Features and Pricing. So we will create pages one by one. First we will write a code for Index page […]

React

Add Tailwind CSS to Gatsby JS project

Posted on:

We have already covered creating gatsby website and running it locally in the browser. Now to add the Tailwind CSS framework to our website we need to visit the following URL https://tailwindcss.com/docs/guides/gatsby and install plugins as shown in the documentation. After this command we need to run following command. This […]

React

Creating a Gatsby JS project

Posted on:

Now in our first part of this tutorial we have already installed all the needed prerequisites. Now we will use gataby cli command to create the Gatsby JS website to do so we need to enter the following command. This command will ask the questions like following Once all the […]