diff --git a/.env b/.env new file mode 100644 index 0000000..fbe203b --- /dev/null +++ b/.env @@ -0,0 +1,22 @@ +ESLINT_NO_DEV_ERRORS=true + +NEXT_PUBLIC_AUX_ENDPOINT="https://apigate.lotus.g1.wrenchboard.com/en/wrench/api/v1" +NEXT_PUBLIC_USERS_ENDPOINT="https://apigate.lotus.g1.wrenchboard.com/en/wrench/api/v1" + +NEXT_PUBLIC_SITE_NAME='WrenchBoard' +NEXT_PUBLIC_DASH_URL='https://dev-users.wrenchboard.com' +NEXT_PUBLIC_DASH_URL_LOGIN="https://dev-users.wrenchboard.com/login?cnt=us" +NEXT_PUBLIC_DASH_URL_SIGNUP="https://dev-users.wrenchboard.com/signup?cnt=us" +NEXT_PUBLIC_ANDROID_APP='https://play.google.com/store/apps/details?id=com.wrenchboard.users' +NEXT_PUBLIC_APPLE_APP='https://itunes.apple.com/us/app/wrenchboard/id1435718367?ls=1&mt=8' +NEXT_PUBLIC_FACEBOOK_LINK='https://www.facebook.com/wrenchboard' +NEXT_PUBLIC_TWITTER_LINK='https://twitter.com/wrenchboard/' +NEXT_PUBLIC_LINKEDIN_LINK="https://www.linkedin.com/company/wrenchboard/" +NEXT_PUBLIC_SUPPORT_EMAIL='support@wrenchboard.com' +NEXT_PUBLIC_SUPPORT_PHONE='404 855-7966' +NEXT_PUBLIC_SUPPORT_PHONE_NG='(+420) 336 476 328' +NEXT_PUBLIC_SUPPORT_US_ADDRESS='Cumberland Pkwy, Atlanta GA 30339' +NEXT_PUBLIC_SUPPORT_NG_ADDRESS='Saka Tinubu Street, Victoria Island Lagos, Nigeria' + +#AGENT LINK +NEXT_PUBLIC_AGENT_LINK='https://dev-agents.wrenchboard.com' diff --git a/.env.development b/.env.development new file mode 100644 index 0000000..63c7088 --- /dev/null +++ b/.env.development @@ -0,0 +1,22 @@ +ESLINT_NO_DEV_ERRORS=true + +NEXT_PUBLIC_AUX_ENDPOINT="https://apigate.lotus.g1.wrenchboard.com/en/wrench/api/v1" +NEXT_PUBLIC_USERS_ENDPOINT="https://apigate.lotus.g1.wrenchboard.com/en/wrench/api/v1" + +NEXT_PUBLIC_SITE_NAME='WrenchBoard' +NEXT_PUBLIC_DASH_URL='https://dev-users.wrenchboard.com' +NEXT_PUBLIC_DASH_URL_LOGIN="https://dev-users.wrenchboard.com/login?cnt=us" +NEXT_PUBLIC_DASH_URL_SIGNUP="https://dev-users.wrenchboard.com/signup?cnt=us" +NEXT_PUBLIC_ANDROID_APP='https://play.google.com/store/apps/details?id=com.wrenchboard.users' +NEXT_PUBLIC_APPLE_APP='https://itunes.apple.com/us/app/wrenchboard/id1435718367?ls=1&mt=8' +NEXT_PUBLIC_FACEBOOK_LINK='https://www.facebook.com/wrenchboard' +NEXT_PUBLIC_TWITTER_LINK='https://twitter.com/wrenchboard/' +NEXT_PUBLIC_LINKEDIN_LINK="https://www.linkedin.com/company/wrenchboard/" +NEXT_PUBLIC_SUPPORT_EMAIL='support@wrenchboard.com' +NEXT_PUBLIC_SUPPORT_PHONE='404 855-7966' +NEXT_PUBLIC_SUPPORT_PHONE_NG='(+420) 336 476 328' +NEXT_PUBLIC_SUPPORT_US_ADDRESS='Cumberland Pkwy, Atlanta GA 30339' +NEXT_PUBLIC_SUPPORT_NG_ADDRESS='Saka Tinubu Street, Victoria Island Lagos, Nigeria' + +#AGENT LINK +NEXT_PUBLIC_AGENT_LINK='https://dev-agents.wrenchboard.com' \ No newline at end of file diff --git a/.env.production b/.env.production new file mode 100644 index 0000000..0311f2f --- /dev/null +++ b/.env.production @@ -0,0 +1,22 @@ +ESLINT_NO_DEV_ERRORS=true + +NEXT_PUBLIC_AUX_ENDPOINT="https://apigate.lotus.g1.wrenchboard.com/en/wrench/api/v1" +NEXT_PUBLIC_USERS_ENDPOINT="https://apigate.lotus.g1.wrenchboard.com/en/wrench/api/v1" + +NEXT_PUBLIC_SITE_NAME='WrenchBoard' +NEXT_PUBLIC_DASH_URL='https://users.wrenchboard.com' +NEXT_PUBLIC_DASH_URL_LOGIN="https://users.wrenchboard.com/login?cnt=us" +NEXT_PUBLIC_DASH_URL_SIGNUP="https://users.wrenchboard.com/signup?cnt=us" +NEXT_PUBLIC_ANDROID_APP='https://play.google.com/store/apps/details?id=com.wrenchboard.users' +NEXT_PUBLIC_APPLE_APP='https://itunes.apple.com/us/app/wrenchboard/id1435718367?ls=1&mt=8' +NEXT_PUBLIC_FACEBOOK_LINK='https://www.facebook.com/wrenchboard' +NEXT_PUBLIC_TWITTER_LINK='https://twitter.com/wrenchboard/' +NEXT_PUBLIC_LINKEDIN_LINK="https://www.linkedin.com/company/wrenchboard/" +NEXT_PUBLIC_SUPPORT_EMAIL='support@wrenchboard.com' +NEXT_PUBLIC_SUPPORT_PHONE='404 855-7966' +NEXT_PUBLIC_SUPPORT_PHONE_NG='(+420) 336 476 328' +NEXT_PUBLIC_SUPPORT_US_ADDRESS='Cumberland Pkwy, Atlanta GA 30339' +NEXT_PUBLIC_SUPPORT_NG_ADDRESS='Saka Tinubu Street, Victoria Island Lagos, Nigeria' + +#AGENT LINK +NEXT_PUBLIC_AGENT_LINK='https://agents.wrenchboard.com' \ No newline at end of file diff --git a/app/Mobile/Drawer.js b/app/Mobile/Drawer.js index 4be2598..94224d7 100644 --- a/app/Mobile/Drawer.js +++ b/app/Mobile/Drawer.js @@ -1,6 +1,7 @@ import logo from '../assets/images/wrenchboard-logo-text.png'; import getConfig from "../../Config/config"; // './../../Config/config' import Image from 'next/image'; +import Link from 'next/link' function Drawer({ drawer, action }) { @@ -32,7 +33,7 @@ function Drawer({ drawer, action }) { className="menu-item-has-children active" > - Home + Home
  • - Service + Service
  • - About Us + About Us
  • @@ -53,7 +54,7 @@ function Drawer({ drawer, action }) { id="contact" className="menu-item-has-children active" > - Contact + Contact diff --git a/app/Services/BlogData.js b/app/Services/BlogData.js index 8b6e639..76df2b4 100644 --- a/app/Services/BlogData.js +++ b/app/Services/BlogData.js @@ -1,8 +1,7 @@ import Axios from 'axios'; async function BlogData() { - // let response = await Axios.post(`${process.env.REACT_APP_AUX_ENDPOINT}/blogdata`); - let response = await Axios.post(`${'https://apigate.lotus.g1.wrenchboard.com/en/wrench/api/v1'}/blogdata`); + let response = await Axios.post(`${process.env.NEXT_PUBLIC_AUX_ENDPOINT}/blogdata`); return await response; } diff --git a/app/assets/css/font-awesome.min.css b/app/assets/css/font-awesome.min.css index b9f87ac..9065f6d 100644 --- a/app/assets/css/font-awesome.min.css +++ b/app/assets/css/font-awesome.min.css @@ -5633,7 +5633,7 @@ readers do not read off random characters that represent icons */ content: "\f099"; } .fa-x-twitter:before { - content: "\e61b"; } + content: "𝕏"; } .fa-twitter-square:before { content: "\f081"; } diff --git a/app/assets/css/main.css b/app/assets/css/main.css index 8b3b708..007501f 100644 --- a/app/assets/css/main.css +++ b/app/assets/css/main.css @@ -49,6 +49,10 @@ span, a { display: inline-block; transition: all linear 0.3s; + text-decoration: none; +} +a:hover { + text-decoration: none !important; } h1, @@ -185,7 +189,7 @@ p { } .appie-section-title { - padding-bottom: 25px; + padding-bottom: 15px; } .appie-section-title .appie-title { font-size: 44px; @@ -6729,7 +6733,7 @@ blockquote cite { } .appie-about-8-area { - /* background-image: url(../images/background-bg.jpg); */ + background-image: url(/assets/images/background-bg.jpg); background-size: cover; background-position: center; background-repeat: no-repeat; diff --git a/app/components/AfterHero.js b/app/components/AfterHero.js index 454a592..cd6a13f 100644 --- a/app/components/AfterHero.js +++ b/app/components/AfterHero.js @@ -1,17 +1,17 @@ import React from 'react'; import thumb5 from '../assets/images/about-thumb-5.png'; import cardImg from '../assets/images/home/card-home-01.png' -import bg from '../assets/images/background-bg.jpg' +// import bg from '../assets/images/background-bg.jpg' import Image from 'next/image'; function AfterHero() { return ( <> -
    +
    -
    +

    {/* We bring everything
    that's required to build apps */} diff --git a/app/components/FooterHomeOne.js b/app/components/FooterHomeOne.js index b1bd709..c759fec 100644 --- a/app/components/FooterHomeOne.js +++ b/app/components/FooterHomeOne.js @@ -2,6 +2,7 @@ import React, { useMemo } from 'react'; import Image from 'next/image'; import logo from '../assets/images/wrenchboard-logo-text.png'; import getConfig from '../../Config/config'; // './../../Config/config' +import Link from 'next/link'; function FooterHomeOne({ className }) { var site = useMemo(() => getConfig()[0], []);; @@ -15,21 +16,21 @@ function FooterHomeOne({ className }) {
    - + - +

    {`It is simple. You can set goals, task, or anything that needs to be done and reward accomplishment. WrenchBoard is the platform to connect opportunities. `}

    - + Read More - +
    @@ -52,19 +53,19 @@ function FooterHomeOne({ className }) {

    Company

    @@ -75,19 +76,19 @@ function FooterHomeOne({ className }) {

    Support

    @@ -121,12 +122,12 @@ function FooterHomeOne({ className }) {