Compare commits
No commits in common. "a4fb62bf2370788d3f82c6bdf5a8c07195bc6dee" and "51f3e937b158c11959bf9ff94ca1301fa45b3663" have entirely different histories.
a4fb62bf23
...
51f3e937b1
@ -11,7 +11,6 @@ export const Header = () => {
|
|||||||
const { t, i18n: { changeLanguage, language } } = useTranslation();
|
const { t, i18n: { changeLanguage, language } } = useTranslation();
|
||||||
const [currentLanguage, setCurrentLanguage] = useState(language);
|
const [currentLanguage, setCurrentLanguage] = useState(language);
|
||||||
const [clock, setClock] = useState(getTimeFormat(currentLanguage));
|
const [clock, setClock] = useState(getTimeFormat(currentLanguage));
|
||||||
const [clickCount, setClickCount] = useState(0);
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
setClock(getTimeFormat(currentLanguage));
|
setClock(getTimeFormat(currentLanguage));
|
||||||
@ -19,14 +18,6 @@ export const Header = () => {
|
|||||||
return () => clearInterval(_);
|
return () => clearInterval(_);
|
||||||
}, [currentLanguage]);
|
}, [currentLanguage]);
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (clickCount > 4) {
|
|
||||||
setClickCount(0);
|
|
||||||
setCurrentLanguage('sigma');
|
|
||||||
changeLanguage('sigma');
|
|
||||||
}
|
|
||||||
}, [clickCount, changeLanguage]);
|
|
||||||
|
|
||||||
|
|
||||||
const handleChangeLanguage = () => {
|
const handleChangeLanguage = () => {
|
||||||
const newLanguage = currentLanguage === "en" ? "pl" : "en";
|
const newLanguage = currentLanguage === "en" ? "pl" : "en";
|
||||||
@ -34,13 +25,9 @@ export const Header = () => {
|
|||||||
changeLanguage(newLanguage);
|
changeLanguage(newLanguage);
|
||||||
}
|
}
|
||||||
|
|
||||||
const easterEgg = () => {
|
|
||||||
setClickCount(prev => prev+1);
|
|
||||||
}
|
|
||||||
|
|
||||||
return <div className='sticky flex flex-col gap-24 top-4 select-none'>
|
return <div className='sticky flex flex-col gap-24 top-4 select-none'>
|
||||||
<div className='p-4 border-1 border-[#757575] rounded-xl flex flex-col md:flex-row grow justify-around bg-[#1C1C1C]'>
|
<div className='p-4 border-1 border-[#757575] rounded-xl flex flex-col md:flex-row grow justify-around bg-[#1C1C1C]'>
|
||||||
<h1 className='text-white' onClick={easterEgg}>{t('header.home')}</h1>
|
<h1 className='text-white'>{t('header.home')}</h1>
|
||||||
|
|
||||||
<h1 className='text-white'>{clock}</h1>
|
<h1 className='text-white'>{clock}</h1>
|
||||||
<h1 className='text-white'>
|
<h1 className='text-white'>
|
||||||
|
File diff suppressed because one or more lines are too long
@ -8,7 +8,7 @@ export const Projects = () => {
|
|||||||
|
|
||||||
<div className="flex flex-col gap-4 pt-4">
|
<div className="flex flex-col gap-4 pt-4">
|
||||||
<div className="flex flex-row gap-4 basis-1">
|
<div className="flex flex-row gap-4 basis-1">
|
||||||
<a href="https://simrail.pro/" className='bg-[#1C1C1C] text-white flex border-1 border-[#757575] rounded-xl text-left p-4 flex-col md:flex-row basis-1 grow'>
|
<div className='bg-[#1C1C1C] text-white flex border-1 border-[#757575] rounded-xl text-left p-4 flex-col md:flex-row basis-1 grow'>
|
||||||
<div className='flex flex-col justify-center text-center items-center'>
|
<div className='flex flex-col justify-center text-center items-center'>
|
||||||
<img alt='image' className='w-20 rounded md:pr-4' src='https://cdn.alekswilc.dev/0dab8e0d-fcc9-481a-9a58-5ebb5a9dda39.png' />
|
<img alt='image' className='w-20 rounded md:pr-4' src='https://cdn.alekswilc.dev/0dab8e0d-fcc9-481a-9a58-5ebb5a9dda39.png' />
|
||||||
</div>
|
</div>
|
||||||
@ -17,10 +17,8 @@ export const Projects = () => {
|
|||||||
<h1 className='text-xl font-bold'>{t("landing.projects.projects.simrailpro.title")}</h1>
|
<h1 className='text-xl font-bold'>{t("landing.projects.projects.simrailpro.title")}</h1>
|
||||||
<p className='font-light'>{t("landing.projects.projects.simrailpro.descripton")}</p>
|
<p className='font-light'>{t("landing.projects.projects.simrailpro.descripton")}</p>
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</div>
|
||||||
|
<div className='bg-[#1C1C1C] text-white flex border-1 border-[#757575] rounded-xl text-left p-4 flex-col md:flex-row basis-1 grow align-center'>
|
||||||
|
|
||||||
<a href="https://discord.gg/oldcocorp" className='bg-[#1C1C1C] text-white flex border-1 border-[#757575] rounded-xl text-left p-4 flex-col md:flex-row basis-1 grow align-center'>
|
|
||||||
<div className='flex flex-col justify-center text-center items-center'>
|
<div className='flex flex-col justify-center text-center items-center'>
|
||||||
<img alt='image' className='w-20 rounded md:pr-4' src='https://cdn.alekswilc.dev/431d2c3e-746b-41f5-9899-d4e1ee81c0cf.png' />
|
<img alt='image' className='w-20 rounded md:pr-4' src='https://cdn.alekswilc.dev/431d2c3e-746b-41f5-9899-d4e1ee81c0cf.png' />
|
||||||
</div>
|
</div>
|
||||||
@ -29,8 +27,7 @@ export const Projects = () => {
|
|||||||
<h1 className='text-xl font-bold'>{t("landing.projects.projects.cocorp.title")}</h1>
|
<h1 className='text-xl font-bold'>{t("landing.projects.projects.cocorp.title")}</h1>
|
||||||
<p className='font-light'>{t("landing.projects.projects.cocorp.descripton")}</p>
|
<p className='font-light'>{t("landing.projects.projects.cocorp.descripton")}</p>
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,40 +1,12 @@
|
|||||||
import { useTranslation } from 'react-i18next'
|
import { useTranslation } from 'react-i18next'
|
||||||
import { useLanyardWS, Activity as TActivity } from 'use-lanyard';
|
import { useLanyardWS } from 'use-lanyard';
|
||||||
import { DiscordWhoamiIcon, GameWhoamiIcon, SpotifyWhoamiIcon, StatusDoNotDisturb, StatusIdle, StatusOffline, StatusOnline, VscodeWhoamiIcon } from './Icons.tsx';
|
|
||||||
// import data from '../data.ts';
|
// import data from '../data.ts';
|
||||||
|
|
||||||
const colors = {
|
const colors = {
|
||||||
online: StatusOnline,
|
online: 'text-green-600',
|
||||||
idle: StatusIdle,
|
idle: 'text-yellow-500',
|
||||||
dnd: StatusDoNotDisturb,
|
dnd: 'text-red-500',
|
||||||
offline: StatusOffline,
|
offline: 'text-gray-500',
|
||||||
}
|
|
||||||
|
|
||||||
const code = ['Code', 'Intellij', 'Jetbrains']
|
|
||||||
|
|
||||||
const Activity = ({ data }: { data: TActivity }) => {
|
|
||||||
if (code.some(x => data.name.includes(x)))
|
|
||||||
return <div className="flex flex-row">
|
|
||||||
<div className="flex flex-col justify-center pr-4">
|
|
||||||
<VscodeWhoamiIcon />
|
|
||||||
</div>
|
|
||||||
<div className="flex flex-col justify-center">
|
|
||||||
<h1 className='text-lg font-light'>{data.name}</h1>
|
|
||||||
{data.state && <p className='text-sm font-light text-zinc-300'>{data.state}</p>}
|
|
||||||
{data.details && <p className='text-sm font-light text-zinc-300'>{data.details}</p>}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
return <div className="flex flex-row">
|
|
||||||
<div className="flex flex-col justify-center pr-4">
|
|
||||||
<GameWhoamiIcon />
|
|
||||||
</div>
|
|
||||||
<div className="flex flex-col justify-center">
|
|
||||||
<h1 className='text-lg font-light'>{data.name}</h1>
|
|
||||||
{data.state && <p className='text-sm font-light text-zinc-300'>{data.state}</p>}
|
|
||||||
{data.details && <p className='text-sm font-light text-zinc-300'>{data.details}</p>}
|
|
||||||
</div>
|
|
||||||
</div>;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export const Whoami = () => {
|
export const Whoami = () => {
|
||||||
@ -45,61 +17,45 @@ export const Whoami = () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
const customStatus = data && data.activities.find(x => x.id === 'custom');
|
const customStatus = data && data.activities.find(x => x.id === 'custom');
|
||||||
const StatusActivity = data && colors[data.discord_status];
|
|
||||||
|
|
||||||
|
|
||||||
return <div className="flex flex-col md:flex-row gap-4 ">
|
return <div className="flex flex-col md:flex-row gap-4 ">
|
||||||
<div className='bg-[#1C1C1C] text-white flex flex-col border-1 border-[#757575] rounded-xl text-left p-4 grow basis-3xs'>
|
<div className='bg-[#1C1C1C] text-white flex flex-col border-1 border-[#757575] rounded-xl text-left p-4 grow basis-1'>
|
||||||
<h1 className='font-bold text-xl'>{t('landing.title')}</h1>
|
<h1 className='text-xl font-bold'>{t('landing.title')}</h1>
|
||||||
<p className='font-light'>{t('landing.desc1')}</p>
|
|
||||||
<p className='font-light'>{t('landing.desc2')}</p>
|
<p className='font-light'>{t('landing.whoami')}</p>
|
||||||
<p className='font-light'>{t('landing.desc3')}</p>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{ data && <div className='bg-[#1C1C1C] text-white flex flex-col border-1 border-[#757575] rounded-xl text-left p-4 grow basis-1'>
|
{ data && <div className='bg-[#1C1C1C] text-white flex flex-col border-1 border-[#757575] rounded-xl text-left p-4 grow basis-1'>
|
||||||
<div className="flex flex-row gap-6">
|
<div className="flex flex-row gap-6">
|
||||||
<div className="flex flex-row w-full">
|
<div className="flex-col justify-center hidden md:flex">
|
||||||
<div className="flex-col justify-center hidden md:flex pr-6">
|
<img src="https://www.alekswilc.dev/avatar.jpg" alt="avatar" className='max-w-42 rounded-xl' />
|
||||||
<img src="https://www.alekswilc.dev/avatar.jpg" alt="avatar" className='max-w-24 rounded-xl' />
|
|
||||||
</div>
|
</div>
|
||||||
<div className='flex flex-col justify-center'>
|
<div className='flex flex-col justify-center'>
|
||||||
<div className="flex flex-row">
|
<h1 className='text-xl font-bold'>{data.discord_user.global_name} - <span className={colors[data.discord_status]}>{t(`landing.discord.status.${data.discord_status}`)}</span></h1>
|
||||||
<h1 className='text-xl font-bold'>{data.discord_user.global_name}</h1>
|
|
||||||
<div className="flex flex-col justify-center pl-2">
|
<div className="flex flex-col justify-center">
|
||||||
{StatusActivity && <StatusActivity />}
|
|
||||||
</div>
|
{ customStatus && <p className='font-extralight text-zinc-300'>{customStatus.state}</p> }
|
||||||
</div>
|
|
||||||
{customStatus && <p className='font-extralight text-zinc-300'>{customStatus.state}</p>}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className="flex ml-auto mb-auto">
|
|
||||||
<DiscordWhoamiIcon />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div className='border-t-1 border-t-[#757575] w-full mt-4 mb-4' />
|
|
||||||
{data.discord_status === 'offline' && <div className="flex flex-col justify-center text-center items-center">
|
|
||||||
<h1>{t('landing.discord.offline')}</h1>
|
|
||||||
</div>}
|
|
||||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-4 pl-2 pb-2 ">
|
|
||||||
{
|
{
|
||||||
data.spotify &&
|
data.spotify &&
|
||||||
<div className="flex flex-row">
|
<>
|
||||||
<div className="flex flex-col justify-center pr-4">
|
<p className='font-bold'>{t("landing.discord.listening")}</p>
|
||||||
<SpotifyWhoamiIcon />
|
<p className='font-light'>{t("landing.discord.song", { song: data.spotify.song, artist: data.spotify.artist })}</p>
|
||||||
</div>
|
</>
|
||||||
<div className="flex flex-col justify-center">
|
|
||||||
<h1 className='text-lg font-light'>{t("landing.discord.listening")}</h1>
|
|
||||||
<p className='text-sm font-light text-zinc-300'>{t("landing.discord.song", { song: data.spotify.song, artist: data.spotify.artist })}</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
data.activities.filter(x => x.name !== 'Spotify' && x.id !== 'custom').sort((a, b) => a.state ? b.state ? 1 : -1 : -1).map((activity, i) =>
|
data.activities.filter(x => x.name !== 'Spotify' && x.id !== 'custom').sort((a, b) => a.state ? b.state ? 1 : -1 : -1).map((activity) =>
|
||||||
<Activity data={activity} key={i} />
|
<>
|
||||||
|
<p className='font-bold'>{t("landing.discord.playing", { app: `${activity.name}${activity.state ? ':' : ''}` })}</p>
|
||||||
|
{activity.details && <p className='font-light'>{activity.state ? `${activity.state} - ${activity.details}` : activity.details }</p>}
|
||||||
|
</>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div> }
|
</div> }
|
||||||
</div>;
|
</div>;
|
||||||
|
@ -4,9 +4,7 @@
|
|||||||
},
|
},
|
||||||
"landing": {
|
"landing": {
|
||||||
"title": "Hi 👋 I’m Aleksander Wilczyński",
|
"title": "Hi 👋 I’m Aleksander Wilczyński",
|
||||||
"desc1": "I'm an IT admin with a battle-tested background in network infrastructure and full-stack web dev. I roll deep in Windows and Linux environments, building custom tools and automations — from hardcore sys stuff to slick game-side scripts.",
|
"whoami": "I am an IT administrator with experience in network infrastructure management and full-stack web application development. I create tools for Windows and Linux systems, as well as scripts for games. My interests include military, firearms, and emergency medical rescue.",
|
||||||
"desc2": "I code in TypeScript, JavaScript, Go, and straight-up C when I need full control and raw performance. I’ve wrangled servers, spun up containers, lived in Git, and locked down networks like a digital fortress.",
|
|
||||||
"desc3": "When I’m not in the console, I’m into military gear, firearms, and tactical combat care. Studying TCCC, survival tactics, and crisis response — staying mission-ready on all fronts. I bring the same precision and mindset to IT as I do to real-world ops: fast, reliable, and no room for failure.",
|
|
||||||
"skills": {
|
"skills": {
|
||||||
"title": "My Skills 🎓",
|
"title": "My Skills 🎓",
|
||||||
"languages": "Languages:",
|
"languages": "Languages:",
|
||||||
@ -25,12 +23,12 @@
|
|||||||
"title": "Featured Projects",
|
"title": "Featured Projects",
|
||||||
"projects": {
|
"projects": {
|
||||||
"simrailpro": {
|
"simrailpro": {
|
||||||
"title": "simrail.pro",
|
"title": "Simrail.PRO",
|
||||||
"descripton": "SimRail Stats - The best SimRail logs and statistics site!"
|
"descripton": "Simrail Stats - The best SimRail logs and statistics site!"
|
||||||
},
|
},
|
||||||
"cocorp": {
|
"cocorp": {
|
||||||
"title": "CoCoRP",
|
"title": "CoCoRP",
|
||||||
"descripton": " Fivem role-play server!"
|
"descripton": "RolePlay Fivem Server!"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -40,9 +38,16 @@
|
|||||||
"support": "Contact support: support@alekswilc.dev"
|
"support": "Contact support: support@alekswilc.dev"
|
||||||
},
|
},
|
||||||
"discord": {
|
"discord": {
|
||||||
"listening": "Listening to",
|
"profile": "Discord Profile",
|
||||||
|
"listening": "Listening to:",
|
||||||
"song": "{{song}} by {{artist}}",
|
"song": "{{song}} by {{artist}}",
|
||||||
"offline": "Offline..."
|
"playing": "Playing {{app}}",
|
||||||
|
"status": {
|
||||||
|
"online": "Online",
|
||||||
|
"idle": "Idle",
|
||||||
|
"dnd": "Do not disturb",
|
||||||
|
"offline": "Offline"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -4,7 +4,6 @@ import LanguageDetector from "i18next-browser-languagedetector";
|
|||||||
|
|
||||||
import en from './en.json';
|
import en from './en.json';
|
||||||
import pl from './pl.json';
|
import pl from './pl.json';
|
||||||
import sigma from './sigma.json';
|
|
||||||
|
|
||||||
|
|
||||||
i18n
|
i18n
|
||||||
@ -17,9 +16,6 @@ i18n
|
|||||||
},
|
},
|
||||||
en: {
|
en: {
|
||||||
"_": en,
|
"_": en,
|
||||||
},
|
|
||||||
sigma: {
|
|
||||||
"_": sigma,
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
debug: false,
|
debug: false,
|
||||||
|
@ -4,10 +4,7 @@
|
|||||||
},
|
},
|
||||||
"landing": {
|
"landing": {
|
||||||
"title": "Hej 👋 jestem Aleksander Wilczyński",
|
"title": "Hej 👋 jestem Aleksander Wilczyński",
|
||||||
"desc1": "Jestem administratorem IT z doświadczeniem w zarządzaniu infrastrukturą sieciową oraz tworzeniu full-stackowych aplikacji webowych. Pracuję na systemach Windows i Linux, tworzę narzędzia systemowe oraz automatyzacje, zarówno użytkowe, jak i do zastosowań gamingowych.",
|
"whoami": "Jestem administratorem IT z doświadczeniem w zarządzaniu infrastrukturą sieciową oraz programowaniu aplikacji webowych w zakresie full stack. Tworzę narzędzia dla systemów Windows i Linux, a także skrypty do gier. Moje zainteresowania obejmują tematykę militarną, broń oraz ratownictwo medyczne.",
|
||||||
"desc2": "Specjalizuję się w programowaniu w języku TypeScript, JavaScript, GO czy C, szczególnie tam, gdzie liczy się wydajność i niskopoziomowy dostęp do systemu. Mam doświadczenie z serwerami, konteneryzacją, Gitem oraz zagadnieniami związanymi z bezpieczeństwem sieci i systemów.",
|
|
||||||
"desc3": "Po godzinach pasjonuję się tematyką militarną, strzelectwem i ratownictwem taktycznym. Zgłębiam procedury TCCC, techniki przetrwania i reagowania w sytuacjach kryzysowych. Staram się łączyć techniczne myślenie z praktycznym podejściem do działania — zarówno w świecie IT, jak i poza nim.",
|
|
||||||
|
|
||||||
"skills": {
|
"skills": {
|
||||||
"title": "Moje umiejętności 🎓",
|
"title": "Moje umiejętności 🎓",
|
||||||
"languages": "Języki:",
|
"languages": "Języki:",
|
||||||
@ -26,7 +23,7 @@
|
|||||||
"title": "Wybrane projekty",
|
"title": "Wybrane projekty",
|
||||||
"projects": {
|
"projects": {
|
||||||
"simrailpro": {
|
"simrailpro": {
|
||||||
"title": "simrail.pro",
|
"title": "Simrail.PRO",
|
||||||
"descripton": "Najlepsza strona z logami i statystykami do gry SimRail!"
|
"descripton": "Najlepsza strona z logami i statystykami do gry SimRail!"
|
||||||
},
|
},
|
||||||
"cocorp": {
|
"cocorp": {
|
||||||
@ -41,9 +38,16 @@
|
|||||||
"support": "Skontaktuj się z supportem: support@alekswilc.dev"
|
"support": "Skontaktuj się z supportem: support@alekswilc.dev"
|
||||||
},
|
},
|
||||||
"discord": {
|
"discord": {
|
||||||
"listening": "Słucham",
|
"profile": "Profil Discord",
|
||||||
|
"listening": "Słucham:",
|
||||||
"song": "{{song}} od {{artist}}",
|
"song": "{{song}} od {{artist}}",
|
||||||
"offline": "Niedostępny..."
|
"playing": "Gram w {{app}}",
|
||||||
|
"status": {
|
||||||
|
"online": "Online",
|
||||||
|
"idle": "Zaraz wracam",
|
||||||
|
"dnd": "Nie przeszkadzać",
|
||||||
|
"offline": "Offline"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,48 +0,0 @@
|
|||||||
{
|
|
||||||
"header": {
|
|
||||||
"home": "SIGMA MODE"
|
|
||||||
},
|
|
||||||
"landing": {
|
|
||||||
"title": "Yo 👊 I’m Aleksander Wilczyński",
|
|
||||||
"desc1": "I run IT like an operator — built tough through real-world network battles and full-stack deployments. Windows, Linux, you name it — I build tools that do work, no fluff, no excuses. From backend beasts to scripts that power the game.",
|
|
||||||
"desc2": "I code in TypeScript, JavaScript, Go, and raw C when performance needs muscle. Servers? Tamed. Containers? Deployed. Git? Mastered. Security? Locked down like a vault. I don’t just write code — I dominate systems.",
|
|
||||||
"desc3": "Outside the digital trenches, I train for real-world chaos — firearms, tactical gear, TCCC, survival. Crisis? I don’t freeze. I respond. Same mindset in code and life: precise, prepared, unfazed. Always in control.",
|
|
||||||
"skills": {
|
|
||||||
"title": "My Arsenal 🎯",
|
|
||||||
"languages": "Battle-tested languages:",
|
|
||||||
"tools": "Tools of the trade:",
|
|
||||||
"softskills": {
|
|
||||||
"title": "Operator traits:",
|
|
||||||
"adaptability": "Unshakable Adaptability",
|
|
||||||
"problem_solving": "Strategic Problem Solving",
|
|
||||||
"creativity": "Tactical Creativity",
|
|
||||||
"time_managment": "Time Under Control",
|
|
||||||
"hard_work": "Relentless Work Ethic"
|
|
||||||
},
|
|
||||||
"more": "... and more firepower"
|
|
||||||
},
|
|
||||||
"projects": {
|
|
||||||
"title": "Ops I've Run",
|
|
||||||
"projects": {
|
|
||||||
"simrailpro": {
|
|
||||||
"title": "simrail.pro",
|
|
||||||
"descripton": "SimRail Stats – the top-tier intel hub for SimRail logs and stats. No BS, just data."
|
|
||||||
},
|
|
||||||
"cocorp": {
|
|
||||||
"title": "CoCoRP",
|
|
||||||
"descripton": "FiveM RP server — built for immersion, run like a unit."
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"contact": {
|
|
||||||
"title": "Reach Out",
|
|
||||||
"email": "Drop the line: aleks@wilczynski.me",
|
|
||||||
"support": "Hit up support: support@alekswilc.dev"
|
|
||||||
},
|
|
||||||
"discord": {
|
|
||||||
"listening": "Locked in to",
|
|
||||||
"song": "{{song}} by {{artist}}",
|
|
||||||
"offline": "Off Grid... probably out rizzing while patching firewalls."
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user