-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(poland.tf): add poland.tf brandings (#2370)
- Loading branch information
1 parent
b57add0
commit b69a14d
Showing
18 changed files
with
211 additions
and
1 deletion.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,25 @@ | ||
import { defaultEnvironment } from './default-environment'; | ||
import { defaultFooterLinks } from './default-footer-links'; | ||
import { defaultHeaderLinks } from './default-header-links'; | ||
|
||
const discordInvitation = 'https://discord.gg/UVFVfc4'; | ||
|
||
export const environment = { | ||
...defaultEnvironment, | ||
apiUrl: 'https://api.6v6.poland.tf', | ||
wsUrl: 'https://api.6v6.poland.tf', | ||
headerLinks: [ | ||
{ | ||
name: 'discord', | ||
icon: '/assets/ui_icon_discord.png', | ||
target: discordInvitation, | ||
tooltip: 'Join us on discord!', | ||
}, | ||
...defaultHeaderLinks, | ||
], | ||
footerLinks: [ | ||
...defaultFooterLinks, | ||
{ name: 'discord', target: discordInvitation }, | ||
], | ||
titleSuffix: '6v6.poland.tf', | ||
}; |
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,27 @@ | ||
import { defaultEnvironment } from './default-environment'; | ||
import { defaultFooterLinks } from './default-footer-links'; | ||
import { defaultHeaderLinks } from './default-header-links'; | ||
import { entryQueueBball } from './entry-queues/entry-queue-bball'; | ||
|
||
const discordInvitation = 'https://discord.gg/UVFVfc4'; | ||
|
||
export const environment = { | ||
...defaultEnvironment, | ||
apiUrl: 'https://api.bball.poland.tf', | ||
wsUrl: 'https://api.bball.poland.tf', | ||
headerLinks: [ | ||
{ | ||
name: 'discord', | ||
icon: '/assets/ui_icon_discord.png', | ||
target: discordInvitation, | ||
tooltip: 'Join us on discord!', | ||
}, | ||
...defaultHeaderLinks, | ||
], | ||
footerLinks: [ | ||
...defaultFooterLinks, | ||
{ name: 'discord', target: discordInvitation }, | ||
], | ||
titleSuffix: 'bball.poland.tf', | ||
entryQueue: entryQueueBball, | ||
}; |
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,27 @@ | ||
import { defaultEnvironment } from './default-environment'; | ||
import { defaultFooterLinks } from './default-footer-links'; | ||
import { defaultHeaderLinks } from './default-header-links'; | ||
import { entryQueue9v9 } from './entry-queues/entry-queue-9v9'; | ||
|
||
const discordInvitation = 'https://discord.gg/UVFVfc4'; | ||
|
||
export const environment = { | ||
...defaultEnvironment, | ||
apiUrl: 'https://api.hl.poland.tf', | ||
wsUrl: 'https://api.hl.poland.tf', | ||
headerLinks: [ | ||
{ | ||
name: 'discord', | ||
icon: '/assets/ui_icon_discord.png', | ||
target: discordInvitation, | ||
tooltip: 'Join us on discord!', | ||
}, | ||
...defaultHeaderLinks, | ||
], | ||
footerLinks: [ | ||
...defaultFooterLinks, | ||
{ name: 'discord', target: discordInvitation }, | ||
], | ||
titleSuffix: 'hl.poland.tf', | ||
entryQueue: entryQueue9v9, | ||
}; |
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,27 @@ | ||
import { defaultEnvironment } from './default-environment'; | ||
import { defaultFooterLinks } from './default-footer-links'; | ||
import { defaultHeaderLinks } from './default-header-links'; | ||
import { entryQueueUltiduo } from './entry-queues/entry-queue-ultiduo'; | ||
|
||
const discordInvitation = 'https://discord.gg/UVFVfc4'; | ||
|
||
export const environment = { | ||
...defaultEnvironment, | ||
apiUrl: 'https://api.ultiduo.poland.tf', | ||
wsUrl: 'https://api.ultiduo.poland.tf', | ||
headerLinks: [ | ||
{ | ||
name: 'discord', | ||
icon: '/assets/ui_icon_discord.png', | ||
target: discordInvitation, | ||
tooltip: 'Join us on discord!', | ||
}, | ||
...defaultHeaderLinks, | ||
], | ||
footerLinks: [ | ||
...defaultFooterLinks, | ||
{ name: 'discord', target: discordInvitation }, | ||
], | ||
titleSuffix: 'ultiduo.poland.tf', | ||
entryQueue: entryQueueUltiduo, | ||
}; |