import { Code2, BookOpen, RocketIcon, Compass } from "lucide-react"; import { AnimateIn } from "@/components/animate-in"; export default function CurrentFocus() { const recentProjects = [ { title: "Darkbox", description: "My gruvbox theme, with a pure black background", href: "/projects/darkbox", tech: ["Neovim", "Lua"], }, { title: "Revive Auto Parts", description: "A car parts listing site built for a client", href: "/projects/reviveauto", tech: ["Tanstack", "React Query", "Fastapi"], }, { title: "Fhccenter", description: "Website made for a private school", href: "/projects/fhccenter", tech: ["Nextjs", "Typescript", "Prisma"], }, ]; return (

Current Focus

{/* Recent Projects Section */}

Recent Projects

{recentProjects.map((project, i) => (

{project.title}

{project.description}

{project.tech.map((tech) => ( {tech} ))}
))}
{/* Current Learning & Interests */}

Currently Learning

  • Rust Programming
  • WebAssembly with Rust
  • HTTP/3 & WebTransport

Project Interests

  • AI Model Integration
  • Rust Systems Programming
  • Cross-platform WASM Apps

Want to Explore

  • LLM Fine-tuning
  • Rust 2024 Edition
  • Real-time Web Transport
); }