init: project setup

This commit is contained in:
cojocaru-david
2025-04-22 13:53:47 +03:00
commit eb9b1a88be
370 changed files with 33387 additions and 0 deletions

17
src/types.ts Normal file
View File

@@ -0,0 +1,17 @@
export type Site = {
title: string
description: string
href: string
author: string
locale: string
location: string
}
export type SocialLink = {
href: string
label: string
}
export type IconMap = {
[key: string]: string
}