From 7e25d51ed66cb81ff55b14b08acc80a4e97d1102 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luc=C3=A0s?= <86352901+LucasVbr@users.noreply.github.com> Date: Thu, 25 Sep 2025 21:53:12 +0200 Subject: [PATCH] refactor: remove company information from author schema and templates --- config/README.yaml | 4 ---- src/templates/README.md.hbs | 1 - src/validators/schemas/AuthorSchema.ts | 1 - 3 files changed, 6 deletions(-) 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(), });