diff --git a/config/README.yaml b/config/README.yaml index f0234b7..7de2bd2 100644 --- a/config/README.yaml +++ b/config/README.yaml @@ -1,11 +1,7 @@ author: first_name: Lucàs location: 🇫🇷 Toulouse, France - company: UPPA socials: - - name: Portfolio - icon: https://img.shields.io/static/v1?message=Portfolio&label=&color=000&labelColor=&style=for-the-badge - url: https://www.lucasvbr.dev - name: LinkedIn icon: https://img.shields.io/static/v1?message=LinkedIn&logo=linkedin&label=&color=0077B5&logoColor=white&labelColor=&style=for-the-badge url: https://www.linkedin.com/in/lucasvbr diff --git a/src/templates/README.md.hbs b/src/templates/README.md.hbs index 2017fb5..ca5f340 100644 --- a/src/templates/README.md.hbs +++ b/src/templates/README.md.hbs @@ -4,7 +4,6 @@ I'm **{{author.first_name}}**, a passionate developer based in **{{author.locati ### 🚀 What I do -- 💻 Currently, I'm studying at **{{author.company}}** for my Master's degree in Informatics. - 🌐 I specialize in Web Development, and I'm always eager to explore new technologies and frameworks. - 🌱 I'm constantly learning and expanding my skill set to stay up-to-date with the ever-evolving tech landscape. diff --git a/src/validators/schemas/AuthorSchema.ts b/src/validators/schemas/AuthorSchema.ts index 1d6e72a..a105283 100644 --- a/src/validators/schemas/AuthorSchema.ts +++ b/src/validators/schemas/AuthorSchema.ts @@ -3,5 +3,4 @@ import { z } from 'zod'; export const AuthorSchema = z.object({ first_name: z.string(), location: z.string(), - company: z.string(), });