@@ -2,11 +2,11 @@ export type SponsorLink = { label: string; href: string }
22export type Sponsor = {
33 id : string
44 name : string
5- logo : string
5+ logo : string
66 description : string
77 website ?: string
88 links ?: SponsorLink [ ]
9- tier ?: 'Partner' | 'Platinum' | 'Gold' | 'Silver' | 'Community' | string
9+ tier ?: 'Partner' | 'Platinum' | 'Gold' | 'Silver' | 'Community' | string
1010}
1111
1212export const SPONSORS : Sponsor [ ] = [
@@ -24,12 +24,26 @@ export const SPONSORS: Sponsor[] = [
2424 { label : 'LinkedIn' , href : 'https://www.linkedin.com/company/scoala-gimnaziala-spectrum-constanta/' } ,
2525 ] ,
2626 } ,
27+
28+ {
29+ id : 'hetzner' ,
30+ name : 'Hetzner' ,
31+ tier : 'Infra' ,
32+ logo : 'https://cdn.simpleicons.org/hetzner' ,
33+ description :
34+ 'Hetzner Online provides dedicated servers and cloud infrastructure, powering reliable hosting and scalable deployments for OmniCTF.' ,
35+ website : 'https://www.hetzner.com/' ,
36+ links : [
37+ { label : 'Cloud' , href : 'https://www.hetzner.com/cloud' } ,
38+ { label : 'Server Auction' , href : 'https://www.hetzner.com/sb' } ,
39+ ] ,
40+ } ,
41+
2742 {
2843 id : 'caido' ,
2944 name : 'CAIDO' ,
3045 tier : 'Platinum' ,
31- logo :
32- 'https://caido.io/images/logo.color.webp?size=160' ,
46+ logo : 'https://caido.io/images/logo.color.webp?size=160' ,
3347 description :
3448 'A lightweight web security auditing toolkit | Caido aims to help security professionals and enthusiasts audit web applications with efficiency and ease.' ,
3549 website : 'https://caido.io/' ,
@@ -44,11 +58,8 @@ export const SPONSORS: Sponsor[] = [
4458 tier : 'Partner' ,
4559 logo :
4660 'https://yt3.ggpht.com/Bi8lwQz0fUcRjfa_33QERvZ2DfCyC2UMEMrBZSJh4KHr-T6JKc_qlifem6Thjn3V7XbaqHLn=s176-c-k-c0x00ffffff-no-rj-mo?size=160' ,
47- description :
48- 'Cybersecurity | Bug Bounty | Ethical Hacking' ,
61+ description : 'Cybersecurity | Bug Bounty | Ethical Hacking' ,
4962 website : 'https://www.youtube.com/@deadoverflow' ,
50- links : [
51- { label : 'Youtube' , href : 'https://www.youtube.com/@deadoverflow' } ,
52- ] ,
63+ links : [ { label : 'Youtube' , href : 'https://www.youtube.com/@deadoverflow' } ] ,
5364 } ,
5465]
0 commit comments