"use client"
import { Button } from "@/components/ui/button"
import { Github } from "lucide-react"
import Link from "next/link"
interface GitHubButtonProps {
repoUrl?: string
}
export default function GitHubButton({ repoUrl = "https://github.com/lumina-rocks/lumina" }: GitHubButtonProps) {
return (
)
}