Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
560 Bytes
import React from "react";
import GitHubCalendar from "react-github-calendar";
import { Row } from "react-bootstrap";
function Github() {
return (
<Row style={{ justifyContent: "center", paddingBottom: "10px" }}>
<h1 className="project-heading" style={{ paddingBottom: "20px" }}>
Days I <strong className="purple">Code</strong>
</h1>
<GitHubCalendar
username="soumyajit4419"
blockSize={15}
blockMargin={5}
color="#c084f5"
fontSize={16}
/>
</Row>
);
}
export default Github;