Skip to content

Commit 4603dc2

Browse files
chore: minor fixes
1 parent 788adab commit 4603dc2

File tree

13 files changed

+3745
-2831
lines changed

13 files changed

+3745
-2831
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Ultroid Documention
2-
- Ultroid-Docs are hosted at [ultroid.tech](https://ultroid.tech)
2+
- Ultroid-Docs are hosted at [ultroid.org](https://ultroid.org)
33
- Ultroid Source Code is available at [TeamUltroid/Ultroid](https://GitHub.com/TeamUltroid/Ultroid)
44

5-
# [![Website](https://img.shields.io/website?down_color=red&down_message=Down&label=ultroid.tech%20%20%20%20%20&up_message=Online&url=https%3A%2F%2Fultroid.tech) ![GitHub labels](https://img.shields.io/github/labels/TeamUltroid/Ultroid-Docs/Help%20Wanted?color=black) ![GitHub forks](https://img.shields.io/github/forks/TeamUltroid/Ultroid-Docs)](#)
5+
# [![Website](https://img.shields.io/website?down_color=red&down_message=Down&label=ultroid.org%20%20%20%20%20&up_message=Online&url=https%3A%2F%2Fultroid.org) ![GitHub labels](https://img.shields.io/github/labels/TeamUltroid/Ultroid-Docs/Help%20Wanted?color=black) ![GitHub forks](https://img.shields.io/github/forks/TeamUltroid/Ultroid-Docs)](#)
66

77
### - Key Features to Include
88
- About Ultroid and Deployment.

docs/installation/heroku.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ Free account will do the work , While signing up don't worry about `Role` or `Pr
1818

1919
If you have a heroku account by now then click the below button to Start deploying
2020

21-
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://deploy.ultroid.tech)
21+
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://deploy.ultroid.org)
2222

2323
Now you will be asked for environment variables . [Click here](/docs/variables/env_variables) know more.

docs/pyUltroid/pyUltroid.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# py-Ultroid Library
2-
31
Core library of [The Ultroid](https://github.com/TeamUltroid/pyUltroid), a python based telegram userbot.
42

53
[![CodeFactor](https://www.codefactor.io/repository/github/teamultroid/pyultroid/badge)](https://www.codefactor.io/repository/github/teamultroid/pyultroid)
@@ -9,13 +7,8 @@ Core library of [The Ultroid](https://github.com/TeamUltroid/pyUltroid), a pytho
97
[![Open Source Love svg2](https://badges.frapsoft.com/os/v2/open-source.svg?v=103)](https://github.com/TeamUltroid/Ultroid)
108
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](https://makeapullrequest.com)
119

12-
# Installation
13-
```bash
14-
pip3 install -U py-Ultroid
15-
```
16-
1710
# Documentation
18-
[![Documentation](https://img.shields.io/badge/Documentation-Ultroid-blue)](https://ultroid.tech/)
11+
[![Documentation](https://img.shields.io/badge/Documentation-Ultroid-blue)](https://ultroid.org/)
1912

2013
# Usage
2114
- Create folders named `plugins`, `addons`, `assistant` and `resources`.

docusaurus.config.js

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module.exports = {
22
title: 'Ultroid',
33
tagline: 'Ultroid, a pluggable telegram userbot, made in python using Telethon!',
4-
url: 'https://www.ultroid.tech',
4+
url: 'https://www.ultroid.org',
55
baseUrl: '/',
66
onBrokenLinks: 'warn',
77
onBrokenMarkdownLinks: 'warn',
@@ -40,6 +40,11 @@ module.exports = {
4040
label: 'GitHub',
4141
position: 'right',
4242
},
43+
{
44+
href: 'https://github.com/sponsors/TeamUltroid',
45+
label: 'Sponsor',
46+
position: 'right',
47+
},
4348
],
4449
},
4550
footer: {
@@ -80,7 +85,7 @@ module.exports = {
8085
},
8186
// {
8287
// label: "URL Shortener",
83-
// href: "https://tiny.ultroid.tech"
88+
// href: "https://tiny.ultroid.org"
8489
// }
8590
],
8691
},

src/css/custom.css

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,26 @@
2323
margin: 0 calc(-1 * var(--ifm-pre-padding));
2424
padding: 0 var(--ifm-pre-padding);
2525
}
26+
27+
/* Sponsor Button Custom Style */
28+
.navbar__link[href*="github.com/sponsors/TeamUltroid"] {
29+
background: var(--ifm-color-primary);
30+
color: #232B2B !important;
31+
border-radius: 1em;
32+
box-shadow: 0 4px 16px rgba(37, 194, 160, 0.15);
33+
padding: 0.2em 1.5em;
34+
font-weight: 600;
35+
transition: background 0.2s, box-shadow 0.2s, color 0.2s;
36+
margin-right: 2em;
37+
margin-left: 0.5em;
38+
border: none;
39+
display: inline-block;
40+
}
41+
42+
.navbar__link[href*="github.com/sponsors/TeamUltroid"]:hover,
43+
.navbar__link[href*="github.com/sponsors/TeamUltroid"]:focus {
44+
background: var(--ifm-color-primary-dark);
45+
color: #fff !important;
46+
box-shadow: 0 8px 24px rgba(37, 194, 160, 0.25);
47+
text-decoration: none;
48+
}

0 commit comments

Comments
 (0)