Full-Stack Developer & Infrastructure Specialist

Think different. Build exceptional.

From telecommunications to software development. I build scalable web applications and design robust network infrastructure. Combining 4+ years of industry experience with modern development practices.

Rohim Dev IDE
Live
Portfolio.tsx
1import React, { useState, useEffect } from 'react'
2import { motion } from 'framer-motion'
3import { ArrowRight, Monitor } from 'lucide-react'
4
5interface DashboardProps {
6 userId: string
7 theme?: 'light' | 'dark'
8}
9
10export const Dashboard: React.FC<DashboardProps> = ({ userId,
11 theme = 'dark' }) => {
12 const [metrics, setMetrics] = useState<MetricsData>(null)
13 const [isLoading, setIsLoading] = useState(true)
14
15 useEffect(() => {
16 fetchUserMetrics(userId)
17 .then(data => setMetrics(data))
18 .catch(error => console.error(error))
19 .finally(() => setIsLoading(false))
20 }, [userId])
21
22 return (
23 <div className='dashboard-container'>
24 <motion.h1
25 initial={{ opacity: 0, y: 20 }}
26 animate={{ opacity: 1, y: 0 }}
27 className='text-4xl font-bold'
28 >
29 Welcome back!
30 </motion.h1>
31
32 {isLoading ? (
33 <div className='loading-spinner'>Loading...</div>
34 ) : (
35 <MetricsPanel data={metrics} />
36 )}
37 </div>
38 )
39}

Rohim

by Rohim Dev • Updated 2 minutes ago

Services I Offer

Full-stack development expertise combining software development expertise with infrastructure knowledge

Frontend Development

React & Next.js applications with responsive, accessible UI and strong SEO.

Backend Development

Scalable APIs and data layers using Golang/Node.js with secure auth.

Mobile Development

React Native apps for iOS and Android with native performance.

Infrastructure Services

Network design, monitoring, and optimization using Mikrotik & Ubiquiti.

Ready to work together?

Let's discuss your project and bring your ideas to life with modern web technologies.

Free consultation. No commitment required. Let's build something amazing together.