Design
Credit Author : https://www.nickkolenda.com/color-psychology/

Credit Author : https://www.nickkolenda.com/color-psychology/

So for the specificity of this case I was redirecting to the admin dashboard continuously when ever I tried to navigate to the home page.
I was logged in as admin.
The problem was that I updated my email and this caused a conflict with the site.
WordPress wanted me to first confirm the new email before I could go to the website front end.
Alternatively if this is not your solution perhaps check this link.
It looked good.
https://www.hostinger.com/tutorials/fix-wordpress-login-redirect-loop

Reference : https://www.inc.com/emily-canal/2018-inc5000-biggest-industries-us-businesses.html
Here are the top 10 biggest industries of the Inc. 5000 this year, including total revenue and the total number of Inc. 5000 companies.
In the business world, new and sexy doesn't always mean lucrative.
It was companies in older, established industries--health, along with logistics and transportation--that achieved astronomical revenue growth in 2017, according to the Inc. 5000 list of the fastest-growing private companies in the U.S. While the list represents only a fragment of the businesses and startups operating in the country, it does highlight which sectors are experiencing massive returns.
For example, businesses in the health industry booked a combined $36.3 billion in revenue in 2017, making it by far the biggest industry on this year's list. At No. 9 on the Inc. 5000 this year, Scientist.com was the top company in the category. The Solana Beach, California-based startup is an online marketplace where pharmaceutical companies can outsource work like toxicology tests and gene editing to thousands of vendors. Scientist.com says it can reduce the outsourcing process, which can take up to six months, to just a single day. It takes a 5 percent cut of the organizations' fees for each transaction, generating $50.3 million in 2017 revenue.
All told, there were 380 health-related businesses on the Inc. 5000 list this year. What's more, women's reproductive health was one of the best industries for starting a business this year. Inc. found the sector was gaining traction as more women began taking control of their reproductive health by tracking their fertility or buying organic menstruation products.
Logistics and transportation ranked No. 4 on the list of biggest industries for Inc. 5000 companies, with $12.6 billion in combined 2017 revenue. Nearly $100 million of that came from the No. 1 company on the list, SwanLeap, which makes software for logistic companies. The Madison, Wisconsin-based startup uses artificial intelligence to ensure that businesses get the best possible rate when shipping freight. SwanLeap says its services save customers an average of nearly 27 percent.
Here are the top 10 biggest industries of the Inc. 5000 this year, including total revenue and the total number of Inc. 5000 companies.
Total revenue: $36.3 billion
Total number of Inc. 5000 companies: 380
Total revenue: $15.1 billion
Total number of Inc. 5000 companies: 236
Total revenue: $14.4 billion
Total number of Inc. 5000 companies: 298
Total revenue: $12.6 billion
Total number of Inc. 5000 companies: 164
Total revenue: $12.5 billion
Total number of Inc. 5000 companies: 460
Total revenue: $12.5 billion
Total number of Inc. 5000 companies: 333
Total revenue: $11.7 billion
Total number of Inc. 5000 companies: 253
Total revenue: $8.1 billion
Total number of Inc. 5000 companies: 225
Total revenue: $8 billion
Total number of Inc. 5000 companies: 179
Total revenue: $7.7 billion
Total number of Inc. 5000 companies: 66
If you need to Start a new Angular Project
Angular Basic API Request
Generate a home component
ng g c home
- Import HttpClient
Inside your home.component.ts file
import { HttpClientModule } from '@angular/common/http';
Import your HTTP CLIENT in your app.module.ts and also add it to your imports
import { HttpClientModule } from '@angular/common/http';
imports: [
HttpClientModule
]
Below is an example demo api. Paste it over your constructor inside your home.component.ts
postData = {
name: 'Garth',
surname: 'Baker'
};
url = 'http://httpbin.org/post';
// url2 = 'https://rest.clientele.co.za/api/echo/hello';
constructor(private http: HttpClient) {
this.http.post(this.url, this.postData).toPromise().then(data => {
// console.log(data.json.name);
// this.json = JSON.stringify(data.json.name);
// console.log(data);
this.json = JSON.stringify(data.json);
});
Inside your home.component.html paste this
<p>home works!</p>
<pre>
{{json}}
{{postData.name}}
{{postData.surname}}
</pre>
https://material.angularjs.org/1.1.0/demo/colors

Angular Documentation
- Documentation
- Angular Animations
Angular Material
- Angular Components
Bootstrap
- Bootstrap Quick Start
You only apply bootstrap for the Grid System. Use Angular Material for components.
Run the below from terminal with Admin Rights
You can open your terminal in admin mode by searching for it then right clicking on command prompt and open as administrator
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
Create a page and add this to it. It will run the page every time someone loads the page or for whatever duration you set yourself.
setTimeout(function() {
location.reload();
}, 5000);
ng update @angular/cli @angular/core --force
npm install @angular/core@5.2.3 --save
This Plugin is Built for Contact Form 7