page links
This commit is contained in:
@@ -18,6 +18,8 @@ function getConfig() {
|
||||
"support_us_address": '1070 Cresta Way Unit 2, San Rafael CA 94903',
|
||||
"dummy": "2018-06-25T18:54:22.000Z",
|
||||
"user_service_endpoint": "https://dashboard.wrenchboard.com/svs/user",
|
||||
"dash_url_blog": "https://blog.float.sg/",
|
||||
// "dash_url_login": "https://dashboard.wrenchboard.com/login",
|
||||
}
|
||||
];
|
||||
|
||||
|
||||
@@ -5671,7 +5671,7 @@ blockquote cite {
|
||||
margin-right: 5px;
|
||||
}
|
||||
.footer-about-widget .social ul li a:hover {
|
||||
background: #2b70fa;
|
||||
background: #E07C8A;
|
||||
color: #fff;
|
||||
}
|
||||
.footer-about-widget.footer-about-widget-2 ul li a:hover {
|
||||
@@ -6291,7 +6291,7 @@ blockquote cite {
|
||||
bottom: 8px;
|
||||
width: 100%;
|
||||
height: 20px;
|
||||
background: #ff6e85;
|
||||
background: #E07C8A;
|
||||
z-index: -1;
|
||||
}
|
||||
.appie-about-top-title p {
|
||||
@@ -6322,7 +6322,7 @@ blockquote cite {
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
margin-top: 345px;
|
||||
background-color: #4687ba;
|
||||
background-color: #E07C8A;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.appie-about-page-area {
|
||||
@@ -6365,7 +6365,7 @@ blockquote cite {
|
||||
top: -710px;
|
||||
height: 645px;
|
||||
width: 80vw;
|
||||
background-image: url(../images/about-us-main.jpg);
|
||||
background-image: url(../images/home-banner.jpg);
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
|
||||
@@ -13,41 +13,63 @@ function HeaderAbout({ action }) {
|
||||
return (
|
||||
<>
|
||||
<header className="appie-header-area appie-sticky">
|
||||
<div className="container">
|
||||
<div className="header-nav-box">
|
||||
<div className="row align-items-center">
|
||||
<div className="col-lg-2 col-md-4 col-sm-5 col-6 order-1 order-sm-1">
|
||||
<div className="appie-logo-box">
|
||||
<a href="/">
|
||||
<img src={Logo} alt="" />
|
||||
</a>
|
||||
<div className="container">
|
||||
<div className="header-nav-box">
|
||||
<div className="row align-items-center">
|
||||
<div className="col-lg-2 col-md-4 col-sm-5 col-6 order-1 order-sm-1">
|
||||
<div className="appie-logo-box">
|
||||
<a href="/">
|
||||
<img src={Logo} alt="Float" />
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div className="col-lg-6 col-md-1 col-sm-1 order-3 order-sm-2">
|
||||
<div className="appie-header-main-menu">
|
||||
<Navigation />
|
||||
</div>
|
||||
</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">
|
||||
<div className="footer-about-widget">
|
||||
<div className=" social mt-30">
|
||||
<ul>
|
||||
<li><a href={site.facebook_link}>
|
||||
<i className="fab fa-facebook-f" />
|
||||
</a></li>
|
||||
|
||||
|
||||
<li><a href={site.twitter_link}>
|
||||
<i className="fab fa-twitter" />
|
||||
</a></li>
|
||||
|
||||
|
||||
<li><a href={site.linked_link}>
|
||||
<i className="fab fa-linkedin-in" />
|
||||
</a></li>
|
||||
|
||||
|
||||
<li><a href={site.instagram_link}>
|
||||
<i className="fab fa-instagram" />
|
||||
</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
<div
|
||||
onClick={(e) => action(e)}
|
||||
className="toggle-btn ml-30 canvas_open d-lg-none d-block"
|
||||
>
|
||||
<i className="fa fa-bars" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className="col-lg-6 col-md-1 col-sm-1 order-3 order-sm-2">
|
||||
<div className="appie-header-main-menu">
|
||||
<Navigation />
|
||||
</div>
|
||||
</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={site.dash_url_login}>
|
||||
<i className="fal fa-user"></i> Login
|
||||
</a>
|
||||
<a className="main-btn ml-30" href={site.dash_url_signup}>
|
||||
Get Started
|
||||
</a>
|
||||
<div
|
||||
onClick={(e) => action(e)}
|
||||
className="toggle-btn ml-30 canvas_open d-lg-none d-block"
|
||||
>
|
||||
<i className="fa fa-bars"></i>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
</div>
|
||||
</header>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,4 +1,8 @@
|
||||
import React from 'react';
|
||||
import ServiceImg from '../../assets/float-ev/images/our-service-img.jpg';
|
||||
|
||||
import Performance from '../../assets/float-ev/images/performance.png'
|
||||
|
||||
|
||||
function ServicesAbout() {
|
||||
return (
|
||||
@@ -13,86 +17,74 @@ function ServicesAbout() {
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className="row">
|
||||
<div className="col-lg-4 col-md-6">
|
||||
<div
|
||||
className="appie-single-service-2 appie-single-service-about mt-30 wow animated fadeInUp"
|
||||
data-wow-duration="2000ms"
|
||||
data-wow-delay="200ms"
|
||||
>
|
||||
<div className="icon">
|
||||
<i className="fal fa-tv"></i>
|
||||
</div>
|
||||
<h4 className="title">Carefully designed</h4>
|
||||
<p>We listen to how the users will love to use our tools. It is always about the users</p>
|
||||
</div>
|
||||
</div>
|
||||
<div className="col-lg-4 col-md-6">
|
||||
<div
|
||||
className="appie-single-service-2 appie-single-service-about item-2 mt-30 wow animated fadeInUp"
|
||||
data-wow-duration="2000ms"
|
||||
data-wow-delay="400ms"
|
||||
>
|
||||
<div className="icon">
|
||||
<i className="fal fa-code"></i>
|
||||
</div>
|
||||
<h4 className="title">Modern Approach</h4>
|
||||
<p>Our target is to present a cutting-edge solution that serves the users at all times.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div className="col-lg-4 col-md-6">
|
||||
<div
|
||||
className="appie-single-service-2 appie-single-service-about item-3 mt-30 wow animated fadeInUp"
|
||||
data-wow-duration="2000ms"
|
||||
data-wow-delay="600ms"
|
||||
>
|
||||
<div className="icon">
|
||||
<i className="fal fa-user-friends"></i>
|
||||
</div>
|
||||
<h4 className="title">User Interactive</h4>
|
||||
<p>Email, notifications, and alerts to get you engaged in the process.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div className="col-lg-4 col-md-6">
|
||||
<div
|
||||
className="appie-single-service-2 appie-single-service-about item-4 mt-30 wow animated fadeInUp"
|
||||
data-wow-duration="2000ms"
|
||||
data-wow-delay="200ms"
|
||||
>
|
||||
<div className="icon">
|
||||
<i className="fal fa-mobile"></i>
|
||||
</div>
|
||||
<h4 className="title">Mobility Approach</h4>
|
||||
<p>Web and native app solution for your continuously moving life.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div className="col-lg-4 col-md-6">
|
||||
<div
|
||||
className="appie-single-service-2 appie-single-service-about item-5 mt-30 wow animated fadeInUp"
|
||||
data-wow-duration="2000ms"
|
||||
data-wow-delay="400ms"
|
||||
>
|
||||
<div className="icon">
|
||||
<i className="fal fa-retweet"></i>
|
||||
</div>
|
||||
<h4 className="title">Seamless Sync</h4>
|
||||
<p> Changes across platforms is simplified and streamlined.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div className="col-lg-4 col-md-6">
|
||||
<div
|
||||
className="appie-single-service-2 appie-single-service-about item-6 mt-30 wow animated fadeInUp"
|
||||
data-wow-duration="2000ms"
|
||||
data-wow-delay="600ms"
|
||||
>
|
||||
<div className="icon">
|
||||
<i className="fal fa-bell"></i>
|
||||
</div>
|
||||
<h4 className="title">Privacy</h4>
|
||||
<p>We truly respect your need for privacy. Our solution doesn't need to share your data to work for you.</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div className="row align-items-center">
|
||||
<div className="col-lg-6">
|
||||
<div
|
||||
className="appie-hero-content "
|
||||
className="appie-title"
|
||||
>
|
||||
<h1 className="appie-title">FLOAT' S<br></br>DASHBOARD</h1>
|
||||
<span></span>
|
||||
<p>Your EV fleet performance metrics<span></span> are in one place, easy to locate any<span></span> useful information analyze data and
|
||||
"compare results "</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="col-lg-6">
|
||||
<div
|
||||
className="appie-hero-content "
|
||||
className="appie-title"
|
||||
>
|
||||
<div className="appie-service-area pt-90 pb-100 undefined">
|
||||
<img src={ServiceImg} alt="" />
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div className="row align-items-center">
|
||||
<div className="col-lg-6">
|
||||
<div
|
||||
className="appie-hero-content "
|
||||
className="appie-title"
|
||||
>
|
||||
<div className="appie-service-area pt-90 pb-100 undefined">
|
||||
<img src={Performance} alt="" />
|
||||
<p>We guide a company through the EV conversion process, starting with insights on current performance of their existing fleet.</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="col-lg-6">
|
||||
<div
|
||||
className="appie-hero-content "
|
||||
className="appie-title"
|
||||
>
|
||||
<div className="appie-service-area pt-90 pb-100 undefined">
|
||||
|
||||
|
||||
<p> We assess what works, provide information on which vehicles to convert first, and continue to improve on fleet performance throughout the step by step conversion to EVs.</p>
|
||||
{/* <img src={TaskIcon} alt="" /> */}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</section>
|
||||
</>
|
||||
|
||||
@@ -43,18 +43,19 @@ function FooterHomeOne({ className }) {
|
||||
<div className="col-lg-2 col-md-6">
|
||||
<div className="footer-navigation">
|
||||
<h4 className="title">Company</h4>
|
||||
<span></span>
|
||||
<ul>
|
||||
<li>
|
||||
<Link to="/about-us">About Us</Link>
|
||||
</li>
|
||||
<li>
|
||||
<Link to="/service">Our Services</Link>
|
||||
<Link to="/">Our Services</Link>
|
||||
</li>
|
||||
<li>
|
||||
{/* <li>
|
||||
<a href="/use-cases">Use Cases</a>
|
||||
</li>
|
||||
</li> */}
|
||||
<li>
|
||||
<Link to="/blog">Blog</Link>
|
||||
<a href={site.dash_url_blog}>Blog</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
@@ -63,6 +64,7 @@ function FooterHomeOne({ className }) {
|
||||
<div className="col-lg-3 col-md-6">
|
||||
<div className="footer-navigation">
|
||||
<h4 className="title">Support</h4>
|
||||
<span></span>
|
||||
<ul>
|
||||
<li>
|
||||
<Link to="/contact">Contact</Link>
|
||||
@@ -71,20 +73,21 @@ function FooterHomeOne({ className }) {
|
||||
<a href="/faq">Faqs</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://blog.float.sg/resources/">Resources</a>
|
||||
<a href="https://blog.float.sg/">Resources</a>
|
||||
</li>
|
||||
<li>
|
||||
{/* <li>
|
||||
<a href="/privacy">Privacy Policy</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/terms">Terms of use</a>
|
||||
</li>
|
||||
</li> */}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div className="col-lg-3 col-md-6">
|
||||
<div className="footer-widget-info">
|
||||
<h4 className="title">Get In Touch</h4>
|
||||
<span></span>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="#">
|
||||
|
||||
@@ -27,22 +27,32 @@ function HomeOneHeader({ action }) {
|
||||
</div>
|
||||
</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"> */}
|
||||
<div className="social mt-30">
|
||||
<ul>
|
||||
<a className="login-btn" href={site.facebook_link}>
|
||||
<i className="fab fa-facebook-f" />
|
||||
</a>
|
||||
<a className="fab fa-twitter" href={site.twitter_link}>
|
||||
<i className="fab fa-twitter-f" />
|
||||
</a>
|
||||
<a className="fab fa-linkedin-in" href={site.linked_link}>
|
||||
{/* <i className="fab fa-linkedin-in" /> */}
|
||||
</a>
|
||||
<a className="fab fa-instagram" href={site.instagram_link}>
|
||||
<i className="fab fa-instagram-f" />
|
||||
</a>
|
||||
</ul>
|
||||
|
||||
<div className="appie-btn-box text-right">
|
||||
<div className="footer-about-widget">
|
||||
<div className=" social mt-30">
|
||||
<ul>
|
||||
<li><a href={site.facebook_link}>
|
||||
<i className="fab fa-facebook-f" />
|
||||
</a></li>
|
||||
|
||||
|
||||
<li><a href={site.twitter_link}>
|
||||
<i className="fab fa-twitter" />
|
||||
</a></li>
|
||||
|
||||
|
||||
<li><a href={site.linked_link}>
|
||||
<i className="fab fa-linkedin-in" />
|
||||
</a></li>
|
||||
|
||||
|
||||
<li><a href={site.instagram_link}>
|
||||
<i className="fab fa-instagram" />
|
||||
</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
<div
|
||||
onClick={(e) => action(e)}
|
||||
@@ -50,6 +60,8 @@ function HomeOneHeader({ action }) {
|
||||
>
|
||||
<i className="fa fa-bars" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -1,12 +1,8 @@
|
||||
import React from 'react';
|
||||
import IconOne from '../../assets/images/icon/usericon.png';
|
||||
import IconTwo from '../../assets/images/icon/Findtaskicon.png';
|
||||
import IconThree from '../../assets/images/icon/taskicon.png';
|
||||
import IconFour from '../../assets/images/icon/walleticon.png';
|
||||
import ServiceImg from '../../assets/float-ev/images/our-service-img.jpg';
|
||||
import TaskIcon from '../../assets/float-ev/images/taskicon.png'
|
||||
import Performance from '../../assets/float-ev/images/performance.png'
|
||||
// import FirstSlide from '../../assets/images/icon/Untitledxyz.png';
|
||||
|
||||
|
||||
|
||||
function ServicesHomeOne({ className }) {
|
||||
@@ -28,9 +24,10 @@ function ServicesHomeOne({ className }) {
|
||||
className="appie-hero-content "
|
||||
className="appie-title"
|
||||
>
|
||||
<h2 className="appie-title">FLOAT'S DASHBOARD</h2>
|
||||
<p>Your EV fleet performance metrics are in one place, easy to locate any useful information analyze data and
|
||||
compare results.</p>
|
||||
<h1 className="appie-title">FLOAT' S<br></br>DASHBOARD</h1>
|
||||
<span></span>
|
||||
<p>Your EV fleet performance metrics<span></span> are in one place, easy to locate any<span></span> useful information analyze data and
|
||||
compare results.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -22,23 +22,17 @@ function DetailsService() {
|
||||
<div className="content">
|
||||
<h3 className="title">What we have built</h3>
|
||||
<p>
|
||||
An open-platform for you to build your self - image, skills set, branded personality,
|
||||
carve a network and ofcourse an income flow with ease and satisfaction of self - actualization and accomplishments.
|
||||
Our platform analyzes current fleet behavior and display areas for improvement on our custom customer dashboard.
|
||||
</p>
|
||||
<span>
|
||||
A major task done by skilled professional with personal touch and completed within the twinkling of an eye in specified time-frame.
|
||||
We provide immediate and longer term changes to improve fleet performance.
|
||||
</span>
|
||||
<p>
|
||||
WrenchBoard is the marketplace that connects independent talent
|
||||
with businesses that requires your skill set and get paid.
|
||||
We serve everyone from one - person startups to a powerful,
|
||||
trust - driven platform that facilitates businesses and freelancers
|
||||
to work concurrently in unique patterns that unlocks their potential.
|
||||
Our platform provides a range of skills in categories including consulting,
|
||||
finance & accounting, website & app development, creative & design,
|
||||
customer support and operations.
|
||||
We integrate company data into Float recommendation engine to provide insights.<br></br>
|
||||
Our software takes you through the daily process of transitioning your fleet to Float.
|
||||
<p>We guide you step by step to convert to Electronic vehicles.</p>
|
||||
<hr />
|
||||
Learn more at < a href ={site.dash_url_login} >WrenchBoard</a>
|
||||
Learn more at < a href ="/" >Floatev</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -5,7 +5,7 @@ function ServiceSideMenu() {
|
||||
var site = getConfig()[0];
|
||||
return (
|
||||
<>
|
||||
<div className="service-details-sidebar mr-50">
|
||||
{/* <div className="service-details-sidebar mr-50">
|
||||
|
||||
<div className="service-download-widget">
|
||||
<a href="/">
|
||||
@@ -42,27 +42,9 @@ function ServiceSideMenu() {
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div className="service-category-widget">
|
||||
<ul>
|
||||
<li>
|
||||
Get WrenchBoard App
|
||||
</li>
|
||||
|
||||
|
||||
<li>
|
||||
<a href={site.apple_app}>
|
||||
<i className="fab fa-apple" /> Download for iOS
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a className="item-2" href={site.android_app}>
|
||||
<i className="fab fa-google-play" /> Download for
|
||||
Android
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div> */}
|
||||
|
||||
|
||||
</>
|
||||
|
||||
Reference in New Issue
Block a user