File tree Expand file tree Collapse file tree 2 files changed +2
-12
lines changed Expand file tree Collapse file tree 2 files changed +2
-12
lines changed Original file line number Diff line number Diff line change 11import Link from "next/link" ;
22
3- type Contributor = {
3+ export type Contributor = {
44 name : string ;
55 role : string ;
66 country ?: string ;
Original file line number Diff line number Diff line change @@ -2,17 +2,7 @@ import React from "react";
22import Layout from "../components/Layout" ;
33import GitHubStarButton from "@/components/GitHubStarsButton" ;
44import Link from "next/link" ;
5- import PersonCard from "@/components/PersonCard" ;
6-
7- type Contributor = {
8- name : string ;
9- role : string ;
10- country ?: string ;
11- avatarUrl ?: string ;
12- github ?: string ;
13- linkedin ?: string ;
14- quote ?: string ;
15- } ;
5+ import PersonCard , { Contributor } from "@/components/PersonCard" ;
166
177const gridColsFor = ( count : number ) => {
188 if ( count >= 4 ) return "grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4" ;
You can’t perform that action at this time.
0 commit comments