이스터에그 추가 및 프로젝트 추가

This commit is contained in:
imnyang 2024-08-18 15:41:25 +09:00
commit ed1284e979
4 changed files with 8 additions and 2 deletions

BIN
bun.lockb

Binary file not shown.

View file

@ -19,8 +19,13 @@ function App() {
} }
if (keySequence.join('') === targetSequence) { if (keySequence.join('') === targetSequence) {
console.log('Furry sequence detected!'); console.log('Furry sequence detected!');
const random = Math.random();
if (random < 0.1) {
document.location.href = 'https://wh64.net?from=imnyang_root_page';
} else {
document.location.href = 'https://ny64.kr?from=imnyang_root_page'; document.location.href = 'https://ny64.kr?from=imnyang_root_page';
} }
}
}; };
document.addEventListener('keydown', handleKeyDown); document.addEventListener('keydown', handleKeyDown);

Binary file not shown.

View file

@ -58,6 +58,7 @@ function Root() {
</div> </div>
<div style={{display: 'flex', flexDirection: 'row', gap: 25}}> <div style={{display: 'flex', flexDirection: 'row', gap: 25}}>
<a href='https://instagram.com/isangjeong.today'>🥕 isangjeong.today</a> <a href='https://instagram.com/isangjeong.today'>🥕 isangjeong.today</a>
<a href='https://github.com/imnyang/FakeAlyac'>💊 FakeAlyac</a>
<a hidden href='https://qloat.com'>🗨 Qloat</a> <a hidden href='https://qloat.com'>🗨 Qloat</a>
</div> </div>
</div> </div>