import React from 'react';
import DepartmentPage from 'trc-client-core/src/components/DepartmentPage';
import Markdown from 'trc-client-core/src/components/Markdown';
import QandaFeed from 'trc-client-core/src/qanda/QandaFeed';
import NewsFeed from 'trc-client-core/src/components/NewsFeed';

var TSSPage = React.createClass({
    displayName: 'TSSPage',
    render(){
        return (
            <div>
                <h1>Technical Support System</h1>

                <Markdown className="margin-bottom2" html={`
National Service Operation (NSD), would like to share an exciting phase of Dealer capability to assist with Franchise of the Future and Fix It Right to enhance your guest’s experience.

As you know vehicle sophistication and complexity, especially in the area of diagnostics, continues to evolve and requires a very high level of capability and support - many Dealers state that this area is their most challenging. With this in mind, TSO has embarked on a multiphase introduction of hardware and software technology to assist Dealers with these complex diagnostic issues.

NSD have been working closely with transnational software developers to develop a system that will enable Dealers to interrogate multiple areas of the business via a simple VIN and keyword search. This will return information relating to your search and the service & warranty life of your guests’ vehicle via an easy to use interface.
                `}/>

                <h2>Welcome to the Technical Support System.</h2>

                <Markdown className="margin-bottom2" html={`
Readily accessible information can include (related to the specific vehicle):

* Repair manuals at the component level base on the keyword search
* Identifiable vehicle information
* All warranty and TSA claims regardless of service/repair Dealer
* Any warranty exclusions including outstanding field activities
* All Dealer Product Reports regardless of service/repair Dealer
* All SARIS documentation such as ADSL’s, TNF’s, WNF’s and Service Bulletins.
From this data return and after analysis, if the Dealer is still unable to successfully rectify the guest issue, the Dealer can escalate via the embedded case management system to the TSO Helpdesk for further technical support.                `}/>
                
                <h2>News</h2>
                <NewsFeed filter={["tss"]} className="margin-bottom2"/>
            </div>
        );
    }
});

export default TSSPage;