import React from 'react'; import { Code2, BookOpen, RocketIcon, Compass } from 'lucide-react'; 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) => (

{project.title}

{project.description}

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

Currently Learning

  • Rust Programming
  • WebAssembly with Rust
  • HTTP/3 & WebTransport
{/* Project Interests */}

Project Interests

  • AI Model Integration
  • Rust Systems Programming
  • Cross-platform WASM Apps
{/* Areas to Explore */}

Want to Explore

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