-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from transpara/27-sprint-7-faq
FAQs
- Loading branch information
Showing
47 changed files
with
1,587 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
runner: | ||
golint: | ||
cmd: golint $(go list ./... | grep -v /vendor/) | ||
format: golint | ||
level: warning | ||
govet: | ||
cmd: go vet $(go list ./... | grep -v /vendor/) | ||
format: govet | ||
errcheck: | ||
cmd: errcheck -asserts -ignoretests -blank $(go list ./... | grep -v /vendor/) | ||
errorformat: | ||
- "%f:%l:%c:%m" | ||
level: warning | ||
staticcheck: | ||
cmd: staticcheck $(go list ./... | grep -v /vendor/) | ||
errorformat: | ||
- "%f:%l:%c: %m" | ||
misspell: | ||
cmd: misspell $(git ls-files) | ||
errorformat: | ||
- "%f:%l:%c: %m" | ||
unparam: | ||
cmd: unparam $(go list ./... | grep -v /vendor/) | ||
errorformat: | ||
- "%f:%l:%c: %m" | ||
revive: | ||
cmd: revive -config=.revive.toml $(go list ./... | grep -v /vendor/) | ||
format: golint | ||
level: warning | ||
golangci: | ||
cmd: golangci-lint run --out-format=line-number ./... | ||
errorformat: | ||
- '%E%f:%l:%c: %m' | ||
- '%E%f:%l: %m' | ||
- '%C%.%#' | ||
level: warning |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,6 @@ | |
id: objects | ||
title: Objects | ||
slug: /get-started/objects | ||
description: 'no description' | ||
description: '' | ||
tags: [] | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,6 @@ | |
id: overview | ||
title: Get Started | ||
slug: /get-started | ||
description: 'no description' | ||
description: '' | ||
tags: [] | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,72 @@ | ||
--- | ||
id: faq | ||
title: FAQ | ||
slug: /faq | ||
description: 'no description' | ||
tags: [] | ||
id: faqs | ||
title: Frequently Asked Questions | ||
slug: /faqs | ||
description: 'Frequent asked questions' | ||
tags: [FAQ] | ||
--- | ||
|
||
In addition to the FAQ we can expose the Frequently Encountered Issues | ||
import Technical from './faqs/technical.mdx'; | ||
import Implementation from './faqs/implementation.mdx'; | ||
import Integrations from './faqs/integrations.mdx'; | ||
import CostRoi from './faqs/cost-roi.mdx'; | ||
import Competition from './faqs/competition.mdx'; | ||
import UseCases from './faqs/use-cases-customers.mdx'; | ||
import UsingSoftware from './faqs/using-the-software.mdx'; | ||
import Quickstart from './faqs/quickstart-pilot.mdx'; | ||
import SupportServices from './faqs/support-services.mdx'; | ||
import CompanyBackground from './faqs/company-background-history-expertise.mdx'; | ||
|
||
**Check if the Frequently Encountered Issues should have it's own page**. | ||
This page contains a list of frequently asked questions (FAQs) that are grouped under different categories. You can find the categories presented below: | ||
|
||
- [Technical](#technical-questions) | ||
- [Implementation](#implementation-questions) | ||
- [Integrations](#integrations-questions) | ||
- [Cost & ROI](#cost--roi-questions) | ||
- [Competition](#competition-questions) | ||
- [Use Cases & Customers](#use-cases--customers-questions) | ||
- [Using the Software](#using-the-software-questions) | ||
- [QuickStart Pilot](#quickstart-pilot-questions) | ||
- [Support & Services](#support--services-questions) | ||
- [Company Background, History & Expertise](#company-background-history--expertise-questions) | ||
|
||
|
||
## Technical Questions | ||
|
||
<Technical/> | ||
|
||
## Implementation Questions | ||
|
||
<Implementation/> | ||
|
||
## Integrations Questions | ||
|
||
<Integrations/> | ||
|
||
## Cost & ROI Questions | ||
|
||
<CostRoi/> | ||
|
||
## Competition Questions | ||
|
||
<Competition/> | ||
|
||
## Use Cases & Customers Questions | ||
|
||
<UseCases/> | ||
|
||
## Using the Software Questions | ||
|
||
<UsingSoftware/> | ||
|
||
## QuickStart Pilot Questions | ||
|
||
<Quickstart/> | ||
|
||
## Support & Services Questions | ||
|
||
<SupportServices/> | ||
|
||
## Company Background, History & Expertise Questions | ||
|
||
<CompanyBackground/> |
30 changes: 30 additions & 0 deletions
30
...al-kpi-docs/docs/supporting-pages/faqs/company-background-history-expertise.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
id: company-background-history-expertise | ||
title: Company Background, History & Expertise | ||
slug: /faq/company-background-history-expertise | ||
description: '' | ||
tags: [FAQ] | ||
--- | ||
|
||
import Accordion from '@site/src/components/accordion/Accordion'; | ||
import AccordionGroup from '@site/src/components/accordion/AccordionGroup'; | ||
import SearchWrapper from '@site/src/components/accordion/SearchWrapper'; | ||
|
||
<SearchWrapper> | ||
<AccordionGroup> | ||
<Accordion title="Why is Transpara the right company to be doing this? What is your background?"> | ||
We've deep software and industrial backgrounds, with team members coming from the likes of Microsoft, OSIsoft, Honeywell, Accenture, and Aspen Tech. This is the third software company we've created, and we've a particular passion for productized solutions. With 500+ public releases under our belts, you get to benefit from all that rigor, even if you're not using Transpara in a hardcore, industrial environment. | ||
</Accordion> | ||
<Accordion title="How big is Transpara? Where do you have staff?"> | ||
We're a small but highly active group of contrarians who've been building and releasing industrial-strength enterprise software products for decades. We've thousands of releases under our belts, hundreds of happy customers across more than 25 countries, and the battle scars to prove it. | ||
</Accordion> | ||
<Accordion title="What are my next steps?"> | ||
You can move forward in a number of ways. Try these out: | ||
- Take the training | ||
- Check out our website | ||
- Schedule a live demo and Q&A | ||
- Engage us for a Quickstart pilot. | ||
|
||
</Accordion> | ||
</AccordionGroup> | ||
</SearchWrapper> |
Oops, something went wrong.