feat: initialize GitHub commits widget with React and TypeScript

- Add package.json with dependencies and scripts for development
- Create main application structure with App component
- Implement GitHubWidget component to display recent commits
- Add GitHubCommitItem component for individual commit display
- Create custom hooks for fetching GitHub and Gitea commits
- Set up Vite for development and build processes
- Include Tailwind CSS for styling
- Add styles for the widget and components
- Configure TypeScript with appropriate settings
- Create utility functions for GitHub API interactions
This commit is contained in:
Kayela Claybon
2026-01-15 15:38:59 -06:00
commit 7725cd75a4
24 changed files with 6468 additions and 0 deletions

13
index.html Normal file
View File

@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>github-commits-widget</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>