This commit is contained in:
도로롱
2025-10-23 20:51:28 +09:00
commit e6ab4973c0
44 changed files with 7642 additions and 0 deletions

40
src/consts.ts Normal file
View File

@@ -0,0 +1,40 @@
import type { Site, Metadata, Socials } from "@types";
export const SITE: Site = {
NAME: "Damhwee Ahn",
EMAIL: "me@damhw.ee",
NUM_POSTS_ON_HOMEPAGE: 5,
NUM_WORKS_ON_HOMEPAGE: 0,
NUM_PROJECTS_ON_HOMEPAGE: 3,
};
export const HOME: Metadata = {
TITLE: "Home",
DESCRIPTION: "도메인을 방치하기 싫어서 대충 astro-nano 기반으로 만든 웹사이트",
};
export const BLOG: Metadata = {
TITLE: "Blog",
DESCRIPTION: "똥글 모음집",
};
export const WORK: Metadata = {
TITLE: "Career",
DESCRIPTION: "커리어",
};
export const PROJECTS: Metadata = {
TITLE: "Projects",
DESCRIPTION: "프로젝트 레포, 데모 목록",
};
export const SOCIALS: Socials = [
{
NAME: "instagram",
HREF: "https://instagram.com/damhwee",
},
{
NAME: "github",
HREF: "https://github.com/yeorinhieut"
}
];