refactor: remove company information from author schema and templates

This commit is contained in:
Lucàs
2025-09-25 21:53:12 +02:00
parent 9590e60372
commit 7e25d51ed6
3 changed files with 0 additions and 6 deletions
-4
View File
@@ -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
-1
View File
@@ -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.
-1
View File
@@ -3,5 +3,4 @@ import { z } from 'zod';
export const AuthorSchema = z.object({
first_name: z.string(),
location: z.string(),
company: z.string(),
});