Config added to service header

This commit is contained in:
dev-chiefworks
2022-01-16 15:22:21 -05:00
parent a167173860
commit 1a2d641e1d
2 changed files with 8 additions and 4 deletions
+4 -2
View File
@@ -1,8 +1,10 @@
import React from 'react';
import logo from '../../assets/images/wrenchboard.png';
import Navigation from '../Navigation';
import getConfig from './../../Config/config'
function HeaderService({ action }) {
var site = getConfig()[0];
return (
<>
<header className="appie-header-area appie-header-page-area appie-sticky">
@@ -23,10 +25,10 @@ function HeaderService({ action }) {
</div>
<div className="col-lg-4 col-md-7 col-sm-6 col-6 order-2 order-sm-3">
<div className="appie-btn-box text-right">
<a className="login-btn" href="https://www.wrenchboard.com/login">
<a className="login-btn" href={site.dash_url_login}>
<i className="fal fa-user"></i> Login
</a>
<a className="main-btn ml-30" href="https://www.wrenchboard.com/signup">
<a className="main-btn ml-30" href={site.dash_url_signup}>
Get Started
</a>
<div