Icon
Name
Size
Type
Modified
📄
src/components/Button.tsx
2.4 kB
TypeScript
2 hours ago
🎣
src/hooks/useAuth.ts
1.8 kB
TypeScript
Yesterday
🌐
public/index.html
1.2 kB
HTML
3 days ago
🎨
styles/globals.css
5.6 kB
CSS
Last week
📦
package.json
890 B
JSON
2 weeks ago
📖
README.md
4.1 kB
Markdown
1 month ago
// src/components/Button.tsx
import React from 'react';
import { cn } from '@/lib/utils';
 
interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
  variant?: 'primary' | 'secondary' | 'ghost';
  size?: 'sm' | 'md' | 'lg';
}
 
export const Button: React.FC<ButtonProps> = ({ variant = 'primary', size = 'md', className, ...props }) => {
  return (
    <button className={cn('px-4 py-2 rounded-md font-medium', variant, size, className)} {...props} />
  );
};
🔀

Branch feat/auth-flow merged

Merged pull request #42 by sarah_dev. Added OAuth2 authentication and session management.

2h ago

Deployment successful

Production build #108 deployed to AWS ECS. Health checks passed.

5h ago
🐛

Issue #89 resolved

Fixed memory leak in WebSocket connection handler. Added connection pooling.

Yesterday
📦

New release v2.4.0 tagged

Includes performance optimizations, dark mode fixes, and new dashboard components.

3 days ago
👤

marcus_j joined the team

Assigned to backend infrastructure and API gateway configuration.

1 week ago
SJ

Sarah Johnson

Lead Frontend Engineer
47Commits
12PRs
8Issues
● Active
MR

Marcus Rivera

Backend Developer
31Commits
9PRs
15Issues
◐ In Review
EW

Emily Watson

UI/UX Designer
22Commits
18PRs
3Issues
✓ Merged
DK

David Kim

DevOps Engineer
56Commits
5PRs
21Issues
● Active