Rework layout and refactors (#4)

Reviewed-on: https://git.juancman.dev/juancmandev/website/pulls/4
Co-authored-by: juancmandev <juancmandev@protonmail.com>
Co-committed-by: juancmandev <juancmandev@protonmail.com>
This commit is contained in:
juancmandev
2025-03-14 00:56:54 -04:00
committed by Juan Manzanero
parent 9b4a54f702
commit b4447f0e38
47 changed files with 161 additions and 636 deletions

7
src/types/post-item.ts Normal file
View File

@@ -0,0 +1,7 @@
type TPostItem = {
id: string;
date: Date | string;
title: string;
type: 'blog' | 'portfolio' | 'videos';
lang: string;
};