mirror of
https://github.com/NeonGamerBot-QK/saahild.com.git
synced 2025-06-24 10:44:21 +00:00
17 lines
666 B
TypeScript
17 lines
666 B
TypeScript
import './skillset.css'
|
|
export default function GithubStats () {
|
|
return <div className='text-center items-center'>
|
|
<h1 className='project-heading font-bold text-2xl' style={{ paddingBottom: '20px' }}>
|
|
Days I <strong className='text-highlight'>Code</strong>
|
|
</h1>
|
|
{/* <GitHubCalendar
|
|
username={config.github_username}
|
|
blockSize={15}
|
|
blockMargin={5}
|
|
color="#c084f5"
|
|
fontSize={16}
|
|
/> */}
|
|
{/* svg from git, updated every 3 hours */}
|
|
<img src='https://raw.githubusercontent.com/NeonGamerBot-QK/NeonGamerBot-QK/output/github-contribution-grid-snake.svg' className='ms-auto me-auto'/>
|
|
</div>
|
|
}
|