From 2d68ce59ca432c7b2583c090b56b5483fd4f59df Mon Sep 17 00:00:00 2001 From: Divlo Date: Sun, 4 Jul 2021 15:42:52 +0200 Subject: [PATCH] docs(readme): usage of json instead of TypeScript (About) --- README.md | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 19ab8c2..924cb28 100644 --- a/README.md +++ b/README.md @@ -20,21 +20,22 @@ ## 📜 About -```typescript -export interface Divlo { - pronouns: 'He' | 'Him' - birthDate: '31/03/2003' - nationality: 'Alsace, France' - interests: [ - 'Developer Full Stack Junior', - 'Passionate about High-Tech', - 'Open-Source enthusiast' - ] - skills: { - languages: ['JavaScript', 'TypeScript', 'Python', 'C/C++'] - frontEnd: ['HTML', 'CSS', 'Tailwind CSS', 'React.js (+ Next.js)'] - backEnd: ['Node.js', 'Fastify', 'Prisma', 'PostgreSQL', 'MySQL'] - tools: ['Ubuntu', 'Hyper Terminal', 'VSCode', 'Git', 'Docker'] +```json +{ + "name": "Divlo", + "pronouns": "He' | 'Him", + "birthDate": "31/03/2003", + "nationality": "Alsace, France", + "interests": [ + "Developer Full Stack Junior", + "Passionate about High-Tech", + "Open-Source enthusiast" + ], + "skills": { + "languages": ["JavaScript", "TypeScript", "Python"], + "frontEnd": ["HTML", "CSS", "Tailwind CSS", "React.js (+ Next.js)"], + "backEnd": ["Node.js", "Fastify", "Prisma", "PostgreSQL", "MySQL"], + "tools": ["Ubuntu", "Hyper Terminal", "VSCode", "Git", "Docker"] } } ```