Skip to content

Commit

Permalink
docs: highlight maintainer services & update twg site links (#4214)
Browse files Browse the repository at this point in the history
* docs: add cta block

* chore: update twg urls
  • Loading branch information
moskalakamil authored Oct 5, 2024
1 parent 74fb44d commit d81e6ea
Show file tree
Hide file tree
Showing 4 changed files with 63 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/ISSUE_TEMPLATE/feature-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ body:
- type: markdown
attributes:
value: Thanks for taking the time to fill out this feature report!

- type: textarea
id: description
attributes:
Expand All @@ -17,7 +17,7 @@ body:
value: "Very cool idea!"
validations:
required: true

- type: textarea
id: why-it-is-needed
attributes:
Expand Down Expand Up @@ -54,6 +54,6 @@ body:
value: |
## Support
If this functionality is important to you and you need it, contact [TheWidlarzGroup](https://thewidlarzgroup.com) - [`[email protected]`](mailto:[email protected])
If this functionality is important to you and you need it, contact [TheWidlarzGroup](https://www.thewidlarzgroup.com/?utm_source=rnv&utm_medium=feature-request#Contact) - [`[email protected]`](mailto:[email protected])
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ We have an discord server where you can ask questions and get help. [Join the di

## Enterprise Support
<p>
📱 <i>react-native-video</i> is provided <i>as it is</i>. For enterprise support or other business inquiries, <a href="https://www.thewidlarzgroup.com/">please contact us 🤝</a>. We can help you with the integration, customization and maintenance. We are providing both free and commercial support for this project. let's build something awesome together! 🚀
📱 <i>react-native-video</i> is provided <i>as it is</i>. For enterprise support or other business inquiries, <a href="https://www.thewidlarzgroup.com/?utm_source=rnv&utm_medium=readme#Contact">please contact us 🤝</a>. We can help you with the integration, customization and maintenance. We are providing both free and commercial support for this project. let's build something awesome together! 🚀
</p>
<a href="https://www.thewidlarzgroup.com/">
<a href="https://www.thewidlarzgroup.com/?utm_source=rnv&utm_medium=readme">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="./docs/assets/baners/twg-dark.png" />
<source media="(prefers-color-scheme: light)" srcset="./docs/assets/baners/twg-light.png" />
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/other/debug.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,4 +88,4 @@ buildscript {

## It's still not working

You can try to open a ticket now !
You can try to open a ticket or contact us for [premium support](https://www.thewidlarzgroup.com/?utm_source=rnv&utm_medium=docs#Contact)!
56 changes: 56 additions & 0 deletions docs/theme.config.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,62 @@ export default {
</span>
),
},
toc: {
extraContent: (
<>
<style>{`
:is(html[class~=dark]) .extra-container {
background-color: #87ccef;
}
:is(html[class~=dark]) .extra-text {
color: #171717;
}
:is(html[class~=dark]) .extra-button {
background-color: #171717;
}
.extra-container {
display: flex;
flex-direction: column;
margin-top: 0.5rem;
text-align: center;
background-color: #171717;
padding: 1rem;
gap: 1rem;
border-radius: 0.5rem;
}
.extra-text {
padding-left: 0.5rem;
padding-right: 0.5rem;
font-weight: bold;
color: #fff;
}
.extra-button {
width: 100%;
border: none;
padding: 0.5rem 1rem;
font-weight: 500;
background-color: #f9d85b;
transition: transform 0.3s ease, background-color 0.3s ease;
}
.extra-button:hover {
transform: scale(1.05);
background-color: #fff;
}
`}</style>
<div className="extra-container">
<span className="extra-text">We are TheWidlarzGroup</span>
<a
target="_blank"
href="https://www.thewidlarzgroup.com/?utm_source=rnv&utm_medium=docs#Contact"
className="extra-button"
rel="noreferrer">
Premium support →
</a>
</div>
</>
),
},

useNextSeoProps() {
return {
titleTemplate: '%s – Video',
Expand Down

0 comments on commit d81e6ea

Please sign in to comment.