diff --git a/apps/web/src/app/contributors/page.tsx b/apps/web/src/app/contributors/page.tsx index fa8184c..f5fa075 100644 --- a/apps/web/src/app/contributors/page.tsx +++ b/apps/web/src/app/contributors/page.tsx @@ -1,6 +1,5 @@ import { Metadata } from "next"; import { Header } from "@/components/header"; -import { Badge } from "@/components/ui/badge"; import { Card, CardContent } from "@/components/ui/card"; import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar"; import { Button } from "@/components/ui/button"; @@ -38,7 +37,7 @@ async function getContributors(): Promise { Accept: "application/vnd.github.v3+json", "User-Agent": "OpenCut-Web-App", }, - next: { revalidate: 600 }, // Cache for 10 minutes + next: { revalidate: 600 }, // 10 minutes } ); @@ -49,7 +48,6 @@ async function getContributors(): Promise { const contributors = await response.json(); - // Filter out bots and add additional contributor info if needed const filteredContributors = contributors.filter( (contributor: any) => contributor.type === "User" ); @@ -71,7 +69,6 @@ export default async function ContributorsPage() {
- {/* Background decoration */}
@@ -79,7 +76,6 @@ export default async function ContributorsPage() {
- {/* Hero Section */}
@@ -93,7 +89,6 @@ export default async function ContributorsPage() { editing

- {/* Quick stats */}
@@ -110,7 +105,6 @@ export default async function ContributorsPage() {
- {/* Top Contributor Spotlight */} {topContributor && (
@@ -162,7 +156,6 @@ export default async function ContributorsPage() {
)} - {/* Other Contributors */} {otherContributors.length > 0 && (
@@ -235,7 +228,6 @@ export default async function ContributorsPage() {
)} - {/* CTA Section */}

Join the community