chore: update site info and social links

This commit is contained in:
Neeldhara Misra 2026-02-20 13:08:20 +05:30
parent ab35492d7b
commit 40f0349b8d

View file

@ -1,40 +1,51 @@
import type { Metadata, Site, Socials } from "@types"; import type { Metadata, Site, Socials } from "@types";
export const SITE: Site = { export const SITE: Site = {
TITLE: "Micro", TITLE: "Neeldhara",
DESCRIPTION: "Neeldhara's micro blog.", DESCRIPTION: "Musings on algorithms, games, teaching, and the occasional wandering thought.",
EMAIL: "neeldhara.mishra@gmail.com", EMAIL: "neeldhara.m@iitgn.ac.in",
NUM_POSTS_ON_HOMEPAGE: 5, NUM_POSTS_ON_HOMEPAGE: 5,
NUM_PROJECTS_ON_HOMEPAGE: 3, NUM_PROJECTS_ON_HOMEPAGE: 3,
}; };
export const HOME: Metadata = { export const HOME: Metadata = {
TITLE: "Home", TITLE: "Home",
DESCRIPTION: "Astro Micro is an accessible theme for Astro.", DESCRIPTION: "Associate Professor in Computer Science at IIT Gandhinagar. Research in algorithm design, computational social choice, and combinatorial games.",
}; };
export const BLOG: Metadata = { export const BLOG: Metadata = {
TITLE: "Blog", TITLE: "Blog",
DESCRIPTION: "A collection of articles on topics I am passionate about.", DESCRIPTION: "Short notes on things I find interesting.",
}; };
export const PROJECTS: Metadata = { export const PROJECTS: Metadata = {
TITLE: "Projects", TITLE: "Projects",
DESCRIPTION: DESCRIPTION: "Side projects and interactive explorations.",
"A collection of my projects with links to repositories and live demos.",
}; };
export const SOCIALS: Socials = [ export const SOCIALS: Socials = [
{ {
NAME: "X (formerly Twitter)", NAME: "X",
HREF: "https://twitter.com/boogerbuttcheek", HREF: "https://x.com/neeldhara",
}, },
{ {
NAME: "GitHub", NAME: "LinkedIn",
HREF: "https://github.com/trevortylerlee", HREF: "https://www.linkedin.com/in/neeldhara-misra-a54b6920/",
},
{
NAME: "Bluesky",
HREF: "https://bsky.app/profile/neeldhara.bsky.social",
},
{
NAME: "Instagram",
HREF: "https://www.instagram.com/neeldharamisra",
},
{
NAME: "Mastodon",
HREF: "https://mathstodon.xyz/@neeldhara",
}, },
{ {
NAME: "Website", NAME: "Website",
HREF: "https://trevortylerlee.com", HREF: "https://neeldhara.com",
}, },
]; ];