import { Cross, Fish, Mountain, Book } from "lucide-react"; import { AnimateIn } from "@/components/animate-in"; const interests = [ { icon: , title: "Faith", description: "My walk with Jesus is the foundation of everything I do, guiding my purpose and perspective", }, { icon: , title: "Fishing", description: "Finding peace and adventure on the water, always looking for the next great fishing spot", }, { icon: , title: "Hiking", description: "Exploring trails with friends and seeking out scenic viewpoints in nature", }, { icon: , title: "Reading", description: "Deep diving into novels & technical books that expand my horizons & captivate my mind", }, ]; export default function OutsideCoding() { return (

Outside of Programming

{interests.map((interest, i) => (
{interest.icon}

{interest.title}

{interest.description}

))}

When I'm not writing code, you'll find me walking with Christ, out on the water, hiking trails, or reading books.

); }