-
Notifications
You must be signed in to change notification settings - Fork 257
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* docs(docsWeb): update docs for consultancy and SPS ISSUES CLOSED: #1462 * add .angular to gitIgnore * docs(docsWeb): add pricing page * docs(docsWeb): updates for pricing page * docs(docsWeb): fix couple of typos * fix(docsWeb): caps
- Loading branch information
1 parent
6e891cf
commit 6001918
Showing
48 changed files
with
452 additions
and
231 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,4 +61,4 @@ consoleProxy.ts | |
.angular | ||
*.tgz | ||
testCreate.sh | ||
scully/runtime | ||
scully/runtime |
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 |
---|---|---|
|
@@ -27,6 +27,14 @@ import { Component, ViewEncapsulation } from '@angular/core'; | |
<li><a href="https://github.com/scullyio/scully/tree/main/assets/logos">Press kit</a></li> | ||
</ul> | ||
</section> | ||
<section> | ||
<h2>Support</h2> | ||
<ul> | ||
<li><a href="https://herodevs.com/">About us</a></li> | ||
<li><a href="mailto:[email protected]">Contact us</a></li> | ||
<li><a href="/support">Support</a></li> | ||
</ul> | ||
</section> | ||
`, | ||
}) | ||
export class FooterComponent {} |
6 changes: 6 additions & 0 deletions
6
apps/scully-docs/src/app/components/header/component/nav-header/nav-header.component.css
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
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 was deleted.
Oops, something went wrong.
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,106 @@ | ||
--- | ||
title: Scully Support | ||
published: true | ||
lang: en | ||
position: 2000 | ||
--- | ||
|
||
# Support | ||
|
||
How to get support. Scully is free to use, and will always be free. The support we will put in is on best effort, but limited to the resources currently available. When you want/need more, the team at HeroDevs is available for you. | ||
|
||
<div class="colhold"> | ||
<div class="col"> | ||
|
||
## Standard | ||
- community support | ||
- [gitter](https://gitter.im/scullyio/community) | ||
- [Angular discord Scully channel](https://discord.com/channels/748677963142135818/751266053673320508) | ||
- [issues](https://github.com/scullyio/scully/issues) | ||
- running Scully on-prem | ||
- all modules under the `@scullyio` npm organization | ||
|
||
### always free | ||
</div> | ||
<div class="col"> | ||
|
||
## Pro support | ||
- Everything from __Standard__ | ||
- Custom OSS Plugins | ||
- CMS Integration Support | ||
- Email Support | ||
- Preferred pricing for custom development | ||
|
||
### Contact HeroDevs | ||
</div> | ||
<div class="col"> | ||
|
||
## Enterprise support | ||
- everything from __pro__ | ||
- custom private plugins | ||
- priority email support | ||
- guaranteed response times | ||
- fixed hourly fees | ||
|
||
### Contact HeroDevs | ||
</div> | ||
</div> | ||
|
||
<!-- The fees mentioned above are based on a yearly, pre-paid subscription. --> | ||
|
||
Contact the team at [HeroDevs](https://www.hero.dev) | ||
|
||
|
||
<style> | ||
/** | ||
This is the styling for the above columns. Keep it local to this file for now. | ||
we might want to move this into the app-styling? | ||
*/ | ||
.colhold { | ||
display:grid; | ||
grid-template-columns: repeat(3, 1fr); | ||
gap: 1rem; | ||
} | ||
@media only screen and (max-width: 79rem) { | ||
.colhold { | ||
grid-template-columns: 1fr 1fr; | ||
} | ||
} | ||
@media only screen and (max-width: 49rem) { | ||
.colhold { | ||
grid-template-columns: 1fr; | ||
} | ||
} | ||
|
||
.col { | ||
position: relative; | ||
border-radius: 12px 0 12px 0; | ||
padding:0 0 2rem 0; | ||
border: 2px solid var(--scully-green); | ||
} | ||
.col>*:first-child { | ||
text-align:center; | ||
border-radius: 12px 0 0 0; | ||
background-color: var(--scully-green); | ||
margin:-2px;/** correct for column border **/ | ||
} | ||
.col>*:last-child { | ||
position: absolute; | ||
text-align:right; | ||
border-radius: 0 0 12px 0; | ||
background-color: var(--scully-green); | ||
color: var(--scully-white); | ||
padding: 8px; | ||
padding-right:16px; | ||
bottom: 0; | ||
left:0; | ||
right:0; | ||
margin:-2px;/** correct for column border **/ | ||
} | ||
.col ul { | ||
list-style:none; | ||
padding: 8px; | ||
margin:0; | ||
} | ||
</style> | ||
|
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
Oops, something went wrong.