diff --git a/public/assets/css/style.css b/public/assets/css/style.css
index e68e19d..4577489 100644
--- a/public/assets/css/style.css
+++ b/public/assets/css/style.css
@@ -1689,11 +1689,6 @@ span.os-version {
.txt-block h3,
.txt-block h2 {
margin-bottom: 26px;
- cursor: default;
-}
-
-.txt-block p {
- cursor: default;
}
h5.sm-title {
@@ -1704,7 +1699,6 @@ h5.sm-title {
.txt-block .btn,
.txt-block .stores-badge {
margin-top: 20px;
- cursor: pointer;
}
/*------------------------------------------*/
diff --git a/src/pages/About.js b/src/pages/About.js
index 8ff0b69..fda42f3 100644
--- a/src/pages/About.js
+++ b/src/pages/About.js
@@ -3,8 +3,66 @@ import { Testimonial } from './assests/data/about';
class About extends React.Component {
render() {
+ let heroInfo = {
+ title: {
+ normal: 'No, we are ', //leave a space after writing for proper indentation
+ bold: 'not just another travel app.'
+ },
+ desc: "Float is a global Start Up working on improving everyone’s city life."
+ }
+ let aboutDesc = {
+ upperSection: {
+ title: "With AI and other unique technology we want to help and encourage people to improve their travel behavior for the better. Whether you want to save time, save money, reduce your carbon footprint, look for great deals or just explore your hood - we’ve got you covered.",
+ vision: {
+ title: 'OUR VISION',
+ text: "Improve quality of life for the world's population by building the future global transportation platform. Increasing accessibility and personal choices, while reducing travel time, traffic congestion, pollution, and loss to local GDP."
+ },
+ mission: {
+ title: "OUR MISSION",
+ text: "We empower travelers to move easier and faster by analyzing their past trips, with traffic and external factors - allowing them to customize travel and receive rewards for sharing their data for the greater good."
+ }
+ },
+ lowerSection: {
+ caption: {
+ first: "MADE FOR YOU",
+ second: "Created for urbanists"
+ },
+ left: {
+ first: "A classic day in your urban life:",
+ second: "You drive to work, drive to the store, maybe drive your kids to school, drive back home, meet some friends if there is little time left. Distances are so vast, it takes forever to get anywhere and there’s little chance for spontaneity and diversity in daily routines - Vibrating urban Citylife is just passing you by."
+ },
+ right: "You are interested in public infrastructure and promote eco-friendly alternatives - however keeping track of what is the fastest, cheapest and greenest way to get somewhere isn’t easily done while being in a rush. We feel you - we are here to support you with by finding a better way to go."
+ },
+ cta: "Read the Reviews"
+ }
+ let testimonials = {
+ tag: 'MADE FOR US',
+ title:'Created from urbanists'
+ }
+ let valueInfo = {
+ id: 'Values',
+ title1: 'Put the User first',
+ text1: 'We are fully independent. We will only show you recommendations, tips, and deals customized for you.',
+ title2: 'Together is Better',
+ text2: 'AI and personal behavior are better together. Together we can make better decisions.',
+ title3: 'There is no planet B',
+ text3: 'There are more and more green alternatives especially in transportation we want to encourage everyone to use these.'
+ }
+ let brands = 'You might know Float from:'
+ let team = {
+ tag: 'One Team Many Talents',
+ title: 'Our Team is as vibrating and diversified as your urban life.',
+ }
+ let newsletter = {
+ tag: 'Subscribe to Our Newsletter',
+ title: 'Stay up to date with our news, ideas and updates',
+ cta: 'Subscribe Now'
+ }
+
return(
+
+
{/* PRELOADER SPINNER
============================================= */}
@@ -302,9 +360,9 @@ class About extends React.Component {
{/* Title */}
-
{team.tag}
+
{team.title.h2}
{/* Text */}
-
{team.title}
+
{team.title.p}
@@ -373,4 +431,75 @@ class About extends React.Component {
)
}
}
-export default About
\ No newline at end of file
+export default About
+
+// PAGE TEXT/CONTENT VARIABLES
+
+//Hero Section
+let heroInfo = {
+ title: {
+ normal: 'No, we are ', //leave a space after writing for proper indentation
+ bold: 'not just another travel app.'
+ },
+ desc: "Float is a global Start Up working on improving everyone’s city life."
+}
+
+// About Section
+let aboutDesc = {
+ upperSection: {
+ title: "With AI and other unique technology we want to help and encourage people to improve their travel behavior for the better. Whether you want to save time, save money, reduce your carbon footprint, look for great deals or just explore your hood - we’ve got you covered.",
+ vision: {
+ title: 'OUR VISION',
+ text: "Improve quality of life for the world's population by building the future global transportation platform. Increasing accessibility and personal choices, while reducing travel time, traffic congestion, pollution, and loss to local GDP."
+ },
+ mission: {
+ title: "OUR MISSION",
+ text: "We empower travelers to move easier and faster by analyzing their past trips, with traffic and external factors - allowing them to customize travel and receive rewards for sharing their data for the greater good."
+ }
+ },
+ lowerSection: {
+ caption: {
+ first: "MADE FOR YOU",
+ second: "Created for urbanists"
+ },
+ left: {
+ first: "A classic day in your urban life:",
+ second: "You drive to work, drive to the store, maybe drive your kids to school, drive back home, meet some friends if there is little time left. Distances are so vast, it takes forever to get anywhere and there’s little chance for spontaneity and diversity in daily routines - Vibrating urban Citylife is just passing you by."
+ },
+ right: "You are interested in public infrastructure and promote eco-friendly alternatives - however keeping track of what is the fastest, cheapest and greenest way to get somewhere isn’t easily done while being in a rush. We feel you - we are here to support you with by finding a better way to go."
+ },
+ cta: "Read the Reviews"
+}
+
+// Testimonials Section
+let testimonials = {
+ tag: 'MADE FOR US',
+ title:'Created from urbanists'
+}
+
+// Values Section
+let valueInfo = {
+ id: 'Values',
+ title1: 'Put the User first',
+ text1: 'We are fully independent. We will only show you recommendations, tips, and deals customized for you.',
+ title2: 'Together is Better',
+ text2: 'AI and personal behavior are better together. Together we can make better decisions.',
+ title3: 'There is no planet B',
+ text3: 'There are more and more green alternatives especially in transportation we want to encourage everyone to use these.'
+}
+
+// Brand Section
+let brands = 'You might know Float from:'
+
+// Team Section
+let team = {
+ tag: 'One Team Many Talents',
+ title: 'Our Team is as vibrating and diversified as your urban life.',
+}
+
+// Newsletter Section
+let newsletter = {
+ tag: 'Subscribe to Our Newsletter',
+ title: 'Stay up to date with our news, ideas and updates',
+ cta: 'Subscribe Now'
+}
\ No newline at end of file
diff --git a/src/pages/Fleet.js b/src/pages/Fleet.js
index 2e4fec9..1bce9b8 100644
--- a/src/pages/Fleet.js
+++ b/src/pages/Fleet.js
@@ -1,17 +1,16 @@
import React, {Component} from 'react';
+
class Fleet extends React.Component {
render() {
return(
-
-
-
+
- {/* PAGE CONTENT */}
+ {/* PAGE CONTENT*/}
{/* HEADER */}
- {/* HERO */}
+ {/* HERO */}
@@ -20,7 +19,8 @@ class Fleet extends React.Component {
{heroSection.tag}
{heroSection.header}
-
{heroSection.desc}
+
{heroSection.desc}
+
{/* HERO IMAGE */}
@@ -42,11 +42,12 @@ class Fleet extends React.Component {
{/* Section ID */}
-
{aboutSection.tag}V
+
{aboutSection.tag}
{/* Title */}
{aboutSection.header}
{/* Text */}
-
{aboutSection.desc1}
+
{aboutSection.desc1}
+
{/* Text */}
{aboutSection.desc2}
{/* Button */}
@@ -56,8 +57,7 @@ class Fleet extends React.Component {
{/* End row */}
{/* End container */}
{/* END CONTENT-2 */}
- {/* FEATURES-13
- ============================================= */}
+ {/* FEATURES-13 */}
@@ -124,8 +124,7 @@ class Fleet extends React.Component {
{/* End row */}
{/* End container */}
{/* END FEATURES-13 */}
- {/* CONTENT-3
- ============================================= */}
+ {/* CONTENT-3 */}
{/* CONTENT BOX-1 */}
@@ -200,8 +199,7 @@ class Fleet extends React.Component {
{/* END CONTENT BOX-2 */}
{/* End container */}
{/* END CONTENT-3 */}
- {/* BRANDS-1
- ============================================= */}
+ {/* BRANDS-1 */}
@@ -269,8 +267,7 @@ class Fleet extends React.Component {
{/* End row */}
{/* End container */}
{/* END BRANDS-1 */}
- {/* FEATURES-5
- ============================================= */}
+ {/* FEATURES-5 */}
{/* SECTION TITLE */}
@@ -375,8 +372,7 @@ class Fleet extends React.Component {
{/* END FEATURES-5 HOLDER */}
{/* End container */}
{/* END FEATURES-5 */}
- {/* PROCESS-2
- ============================================= */}
+ {/* PROCESS-2 */}
{/* SECTION TITLE */}
@@ -414,8 +410,7 @@ class Fleet extends React.Component {
{/* End row */}
{/* End container */}
{/* END PROCESS-2 */}
- {/* CONTENT-1
- ============================================= */}
+ {/* CONTENT-1 */}
@@ -427,7 +422,7 @@ class Fleet extends React.Component {
{/* Title */}
{trackingFleet.header}
{/* Text */}
-
{trackingFleet.desc}
+
{trackingFleet.desc}
{/* Button */}
{trackingFleet.cta}
@@ -440,9 +435,9 @@ class Fleet extends React.Component {
{/* End row */}
{/* End container */}
- {/* END CONTENT-1 */}
- {/* TESTIMONIALS-2
- ============================================= */}
+ {/* END CONTENT-1 */}
+
+ {/* TESTIMONIALS-2 */}
@@ -450,11 +445,11 @@ class Fleet extends React.Component {
{/* Section ID */}
-
{testimonalSection.tag}
+
{testimonialSection.tag}
{/* Title */}
-
{testimonalSection.header}
+
{testimonialSection.header}
{/* Text */}
-
{testimonalSection.text}
+
{testimonialSection.text}
{/* TESTIMONIALS CAROUSEL */}
@@ -641,8 +636,7 @@ class Fleet extends React.Component {
{/* End container */}
{/* END TESTIMONIALS-2 */}
- {/* PRICING-2
- ============================================= */}
+ {/* PRICING-2 */}
{/* SECTION TITLE */}
@@ -725,8 +719,7 @@ class Fleet extends React.Component {
{/* END DOWNLOAD BUTTON */}
{/* End container */}
{/* END PRICING-2 */}
- {/* CONTENT-13
- ============================================= */}
+ {/* CONTENT-13 */}
@@ -760,8 +753,7 @@ class Fleet extends React.Component {
{/* End row */}
{/* End container */}
{/* END CONTENT-13 */}
- {/* CONTENT-14
- ============================================= */}
+ {/* CONTENT-14 */}
{/* SECTION TITLE */}
@@ -785,8 +777,7 @@ class Fleet extends React.Component {
{/* END TEXT BLOCK */}
{/* End container */}
{/* END CONTENT-14 */}
- {/* FAQs-2
- ============================================= */}
+ {/* FAQs-2 */}
{/* SECTION TITLE */}
@@ -901,8 +892,7 @@ class Fleet extends React.Component {
{/* End container */}
{/* END FAQs-2 */}
- {/* NEWSLETTER-1
- ============================================= */}
+ {/* NEWSLETTER-1 */}
@@ -933,8 +923,7 @@ class Fleet extends React.Component {
{/* End newsletter-holder */}
{/* End container */}
{/* END NEWSLETTER-1 */}
- {/* BLOG-1
- ============================================= */}
+ {/* BLOG-1 */}
{/* SECTION TITLE */}
@@ -1034,8 +1023,7 @@ class Fleet extends React.Component {
{/* END BLOG POSTS */}
{/* End container */}
{/* END BLOG-1 */}
- {/* DOWNLOAD-1
- ============================================= */}
+ {/* DOWNLOAD-1 */}
@@ -1079,10 +1067,185 @@ class Fleet extends React.Component {
{/* END TEXT BLOCK */}
{/* End row */}
{/* End container */}
- {/* END DOWNLOAD-1 */}
- {/* END PAGE CONTENT */}
-
+ {/* END DOWNLOAD-1 */}
+
+ {/* END PAGE CONTENT */}
)
}
}
-export default Fleet
\ No newline at end of file
+export default Fleet
+
+// PAGE TEXT/CONTENT VARIABLES
+
+//Hero Section
+let heroSection = {
+ tag: 'HTML',
+ header: 'Float Business Fleet Management Systems',
+ desc: 'We are your A.I. enables assistance to manage your fleet and advancement to new platforms with insights on current performance and operational projections.'
+}
+
+// About Section
+let aboutSection = {
+ tag: 'FLOAT EV',
+ header: 'Electric Fleet Platform',
+ desc1: "Float's recommendation engine enables tracking of vehicle usage, ownership & service costs, fuel costs, emissions. Its Telematics IoT enabled OBD device & dashcam to connect directly to the vehicle to pull data.",
+ desc2: "Aliqum mullam blandit and tempor sapien donec lipsum gravida porta. Velna vitae auctor congue magna impedit ligula risus. Mauris donec ligula an impedit magnis",
+ cta: "Find Out More"
+}
+
+// Stats Section
+let statsSection = {
+ tag: 'Flexible Features',
+ header: "FLOAT'S DASHBOARD",
+ desc1: "Your EV fleet performance metrics are in one place, easy to locate any useful information analyze data and compare results.",
+ desc2: "Gravida porta velna vitae auctor congue magna nihil impedit ligula risus mauris donec ligula",
+ metrics: {
+ title: 'Metrics',
+ content: 'We guide a company through the EV conversion process, starting with insights on current performance of their existing fleet existing fleet.performance of their existing fleet existing fleet.'
+ },
+ access: {
+ title: 'Access',
+ content: '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..'
+ },
+ guide: {
+ title: 'Guide',
+ content: '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..'
+ },
+ motivated: {
+ title: 'Stay Motivated',
+ content: 'Take the complexity out of electrifying your fleet with industry-leading support.Porta semper lacus cursus feugiat primis ultrice ligula risus ultrice ligula risus auctor ultrice ociis'
+ }
+}
+
+// A Float Recommendation Framework (PART 1)
+let floatIntegrationSection = {
+ tag: 'Perfect Integration',
+ header: 'Float analytical, recommendation / rewards framework.',
+ desc1: 'Our platform analyzes current fleet behavior and display areas for improvement on our custom customer dashboard.',
+ desc2: 'Float saves their customers money from day one by analyzing their current fleet data on cost, emissions,time and resources and then makes recommendations on prioritization of vehicle replacements and infrastructure investments.'
+}
+
+// A Float Recommendation Framework (PART 2)
+let specialFeaturesSection ={
+ firstFeature: {
+ title: 'HD Instructional Videos',
+ content: 'Ligula risus auctor tempus dolor feugiat undo lacinia purus lipsum primis potenti at suscipit quaerat ultrice tellus viverra'
+ },
+ secondFeature: {
+ title: 'Smart Watch Optimized',
+ content: 'Ligula risus auctor tempus dolor feugiat undo lacinia purus lipsum primis potenti at suscipit quaerat ultrice tellus viverra'
+ },
+ thirdFeature: {
+ title: 'Heart Rate Tracking',
+ content: 'Ligula risus auctor tempus dolor feugiat undo lacinia purus lipsum primis potenti at suscipit quaerat ultrice tellus viverra'
+ }
+}
+
+// Brand Associations
+let brandSectionTitle = 'You might know Float from:'
+
+// Features Section (PART 1)
+let featuresSection ={
+ header: 'No,we are not just another EV!',
+ subHeader: 'Our software takes you through the daily process of transitioning your fleet to Float. Self-Management Inclusive',
+ userFriendlyItem: {
+ title: 'User-Friendly',
+ content: 'Our software takes you through the daily process of transitioning your fleet to Float.process of transitioning your fleet to Float'
+ },
+ fullyFunctionalItem: {
+ title: 'Fully functional',
+ content: 'We integrate company data into Float recommendation engine to provide insights.'
+ },
+ quickAccessItem: {
+ title: 'Quick Access',
+ content: 'Porta semper lacus cursus feugiat primis ultrice ligula risus auctor tempus feugiat at impedit felis undo auctor augue mauris'
+ },
+ trackAndAnalyzeItem: {
+ title: 'Track & Analyze',
+ content: 'Porta semper lacus cursus feugiat primis ultrice ligula risus auctor tempus feugiat at impedit felis undo auctor augue mauris'
+ },
+ easy2Follow: {
+ title: 'Easy To Follow',
+ content: 'Porta semper lacus cursus feugiat primis ultrice ligula risus auctor tempus feugiat at impedit felis undo auctor augue mauris'
+ },
+ ongoingSupport: {
+ title: 'Ongoing Support',
+ content: 'We guide you step by step to convert to Electronic vehicles.We guide you step by step to convert'
+ }
+}
+
+// Steps Section
+let stepsSection = {
+ header: 'Custom fleet on your own time and in your own space',
+ step1: {
+ title: 'Get Set Up',
+ content: 'Nemo ipsam egestas volute dolores quaerat sodales'
+ },
+ step2: {
+ title: 'Get Your Plan',
+ content: 'Nemo ipsam egestas volute dolores quaerat sodales'
+ },
+ step3: {
+ title: 'Get Moving',
+ content: 'Nemo ipsam egestas volute dolores quaerat sodales'
+ }
+}
+
+// Network Section
+let trackingFleet = {
+ tag: 'Work Online and Offline',
+ header: 'Stay on track and plan your fleet',
+ desc: 'Quaerat sodales sapien euismod purus blandit a purus ipsum primis in cubilia laoreet augue luctus magna dolor luctus at egestas sapien vitae nemo egestas volute and turpis dolores aliquam quaerat sodales a sapien',
+ cta: 'Read the FAQs'
+}
+
+// Testimonials Section
+let testimonialSection = {
+ tag: 'Reviews',
+ header: 'Our Happy Customers',
+ text: 'Aliquam augue suscipit luctus neque purus ipsum neque d'
+}
+
+// Features Section (PART 2)
+let optimizedSection = {
+ tag: 'Totally Optimized',
+ header: 'Intuitive features, powerful results',
+ list1: 'Fringilla risus, luctus mauris orci auctor purus euismod pretium purus pretium ligula rutrum tempor sapien',
+ list2: 'Quaerat sodales sapien euismod purus blandit',
+ list3: 'Nemo ipsam egestas volute turpis dolores ut '
+}
+
+// Viewport Section
+let accessibiltySection = {
+ header: 'Accessible for All Platforms',
+ text: 'Aliquam a augue suscipit, luctus neque purus ipsum neque at dolor primis libero tempus, blandit and cursus varius magna tempus a dolor'
+}
+
+// FAQs Section
+let faqSection = {
+ header: 'Got Questions? Look Here',
+ text: 'Aliquam a augue suscipit, luctus neque purus ipsum neque at dolor primis libero tempus, blandit and cursus varius magna tempus a dolor',
+ question: 'Have more questions?',
+ link: 'Ask your question here'
+}
+
+// Blog Section
+let blogSection = {
+ header: 'Our Recipes & Inspiration',
+ text: 'Aliquam a augue suscipit, luctus neque purus ipsum neque at dolor primis libero tempus, blandit and cursus varius magna tempus a dolor'
+}
+
+// Subscribe Section
+let subscribeSection = {
+ tag: 'Subscribe to Our Newsletter',
+ header: 'Stay up to date with our news, ideas and updates',
+ cta: 'Subscribe Now'
+}
+
+// Download Section
+let downloadSection = {
+ header: 'Take your fleet to the next level',
+ text: 'Augue egestas volutpat egestas augue purus cubilia laoreet and magna suscipit luctus dolor tempus',
+ ratingText: 'All Versions Rating',
+ reviewText: 'Based on 7.296 user reviews (App Store & Google Play)'
+}
\ No newline at end of file