Our Contributors
+The writers, thinkers, and storytellers behind every page.
+diff --git a/src/pages/Contributors.tsx b/src/pages/Contributors.tsx new file mode 100644 index 0000000..e1a134a --- /dev/null +++ b/src/pages/Contributors.tsx @@ -0,0 +1,60 @@ +import Header from "@/components/Header"; +import Footer from "@/components/Footer"; +import { Card, CardContent } from "@/components/ui/card"; +import { Avatar, AvatarFallback } from "@/components/ui/avatar"; +import { Badge } from "@/components/ui/badge"; +import { Twitter, Instagram, Globe, BookOpen } from "lucide-react"; + +const contributors = [ + { name: "Elena Vasquez", role: "Senior Correspondent", bio: "Covers culture, design, and the built environment. Former editor at Dwell. Based in Barcelona.", initials: "EV", articles: 42, social: { twitter: "#", site: "#" } }, + { name: "Soren Blake", role: "Technology Editor", bio: "Writes about AI, digital ethics, and the intersection of humanity and machines. Based in Copenhagen.", initials: "SB", articles: 38, social: { twitter: "#", instagram: "#" } }, + { name: "Amara Diallo", role: "Culture Writer", bio: "Explores music, art, and identity through longform narrative. Contributor to The New Yorker.", initials: "AD", articles: 31, social: { instagram: "#", site: "#" } }, + { name: "Kai Mendez", role: "Features Writer", bio: "Tells stories about communities, cities, and the people who shape them. Based in Mexico City.", initials: "KM", articles: 27, social: { twitter: "#" } }, + { name: "Nadia Park", role: "Food and Travel", bio: "Chronicles culinary traditions and the journeys behind them. James Beard Award nominee.", initials: "NP", articles: 24, social: { instagram: "#", site: "#" } }, + { name: "Ines Moreau", role: "Style Columnist", bio: "Writes about fashion, craft, and material culture with a focus on sustainability. Based in Paris.", initials: "IM", articles: 19, social: { twitter: "#", instagram: "#", site: "#" } }, +]; + +export default function Contributors() { + return ( +
The writers, thinkers, and storytellers behind every page.
+