
Toni Diklić
Developer
Rijeka, Croatia
Passionate web and mobile developer focused on creating clean, efficient, and scalable applications with a modern tech stack. Specialized in React-Native, React, TypeScript and other frontend technologies, delivering responsive and intuitive user interfaces. Working on a modern dating app in my free time.
Building Purpose-Driven Digital Experiences
With over 6 years of experience in mobile and web development, I specialize in the React and React Native ecosystems. I partner with clients worldwide, from innovative startups to multi-million dollar companies, to build scalable, high-performance applications that solve real-world problems.
What I Bring to the Table
- Mobile & Web Development
Crafting seamless, user-friendly applications for both web and mobile platforms using modern best practices. - Clean & Scalable Architecture
A deep commitment to writing simple, maintainable, and scalable code. I build solutions with the long-term success of your project in mind. - Product-Focused Mindset
I enjoy the entire product lifecycle, from concept to deployment, and am passionate about creating tools that provide tangible value to users. - Collaborative Problem-Solving
I thrive in collaborative environments, sharing ideas and working together with teams to overcome challenges and innovate.
Why Work With Me?
- Proven experience delivering high-quality solutions for a diverse range of global clients.
- A strong belief in simplicity and clarity, ensuring your codebase is robust and easy for any developer to understand.
- Genuinely passionate about using technology to create products that have a positive and meaningful impact.
- Driven by a love for learning and building; I'm currently developing a dating app aimed at creating more authentic connections.
Bokbok.io
BokBok is a video-based dating app designed to bring authenticity and personality back to online dating. Unlike traditional swipe-based apps that rely solely on photos, BokBok encourages users to create video profiles, allowing for a deeper, more engaging connection right from the start
Open Project Websiteinterface Developer {
name: string;
skills: string[];
interests: string[];
};
interface TechStack {
mobile: string[];
web: string[];
other: string[];
};
type ContactType = 'github' | 'linkedIn' | 'email';
const techStack: TechStack = {
mobile: [
'React-Native',
],
web: [
'JavaScript',
'TypeScript',
'React',
'Svelte',
'Astro',
'TailwindCSS',
'SCSS',
'Markdown',
'Vite'
],
other: [
'Node.js',
'Docker',
'PostgreSQL',
'DrizzleORM',
'tRPC',
'DigitalOcean',
]
};
// Developer profile
const me: Developer = {
name: 'Toni Diklić',
skills: [
...techStack.mobile,
...techStack.web,
...techStack.other
],
interests: [
'Open Source',
'Privacy',
'Performance',
'Self-Hosting',
'Networking',
'Cryptography',
'Startups'
]
};
// Contact function
const contact = (type: ContactType): string => {
switch (type) {
case 'github':
return 'https://github.com/MHB2011';
case 'linkedIn':
return 'https://www.linkedin.com/in/tonidev';
case 'email':
return 'tony.diklic@gmail.com';
default:
return 'Send pigeon.';
}
};