Profile picture Dimitri C.

Dimitri C.

Front End Developer

Carvin, France

Le développement web est une véritable passion pour moi. J'aime créer des interfaces à la fois esthétiques et fonctionnelles en combinant HTML et CSS, puis leur donner vie grâce à JavaScript. Ce qui me motive, c'est l'équilibre entre créativité et logique, et la possibilité de toujours apprendre en construisant des projets concrets.

$ npx connect
Initializing...
Ready to connect.
Waiting for contact request...
interface Developer {
    name: string;
    skills: string[];
    interests: string[];
};

interface TechStack {
    devOps: string[];
    backend: string[];
   frontend: string[];
};

type ContactType = 'github' | 'twitter' | 'linkedIn' | 'email';

const techStack: TechStack = {
    frontend: [
        'HTML',
        'CSS',
        'JavaScript',
        'TailwindCSS',
        'Astro',
        'Markdown',
    ],
};

// Developer profile
const me: Developer = {
    name: 'Dimitri C.',
    skills: [
        ...techStack.frontend
    ],
    interests: [
        'Open Source',
        'Security',
        'Privacy',
        'Performance',
    ]
};

// Contact function
const contact = (type: ContactType): string => {
    switch (type) {
        case 'github':
            return 'https://github.com/PandaaxDvlpt';
        case 'linkedIn':
            return 'https://www.linkedin.com/in/dimitri-couvreur-2ba24a35b/';
        case 'email':
            return 'contact@izuka-dev.fr';
        default:
            return 'Send fax.';
    }
};

Brief Simplon

Ce projet comprend les fichiers index.html, style.css et index.js, formant une application web interactive. Un dossier consignes/ contient les instructions relatives au projet. Développé par PandaaxDvlpt, ce projet utilise les technologies HTML, CSS et JavaScript.

Open Project Website
© 2025 Dimitri C. - Built with Astro