KANISH.DEV
EXPLORER
PORTFOLIO
home.tsx
projects.tsx
about.md
clients.json
contact.css
EXPLORER
PORTFOLIO
home.tsx
projects.tsx
about.md
clients.json
contact.css
home.tsx
projects.tsx
about.md
clients.json
contact.css
src
pages
home.tsx
1
import
React
from
'react'
;
2
import
{
RuntimeEnvironment
}
from
'@kanish/core'
;
3
4
export default function
System
() {
5
const
profile
= {
6
user
:
'Kanish Kumar'
,
7
process
:
'Full-Stack Engineer.exe'
,
8
loc
:
'India (IN)'
,
9
status
:
'RUNTIME ACTIVE'
10
};
11
12
return
(
13
<
RuntimeEnvironment
>
14
<
SystemMonitor
cpu
='12%'
mem
='64MB'
/>
15
<
HolographicCard
>
16
<
Avatar
src=
'/me.png'
/>
17
<
Info
data={profile} />
18
<
ExecuteButton
onClick
{() =>
init
('projects')} />
19
</
HolographicCard
>
20
<
ConsoleOutput
logs
={logs} />
21
</
RuntimeEnvironment
>
22
);
23
}
RUNTIME ACTIVE
CPU: 12%
MEM: 64MB
Kanish Kumar
Full-Stack Engineer.exe
LOCATION
India (IN)
UPTIME
00:00:02
INITIALIZE PROJECTS
CONSOLE OUTPUT
➜
System initialized.
➜
Loading user profile data...
➜
Assets loaded: 43ms
➜
Waiting for user input...
➜
main*
0 errors
TypeScript React
TSX