From 40f0349b8d450d360d13ea129845704aa53651ca Mon Sep 17 00:00:00 2001 From: Neeldhara Misra Date: Fri, 20 Feb 2026 13:08:20 +0530 Subject: [PATCH] chore: update site info and social links --- src/consts.ts | 35 +++++++++++++++++++++++------------ 1 file changed, 23 insertions(+), 12 deletions(-) diff --git a/src/consts.ts b/src/consts.ts index 5d75698..2b2e598 100644 --- a/src/consts.ts +++ b/src/consts.ts @@ -1,40 +1,51 @@ import type { Metadata, Site, Socials } from "@types"; export const SITE: Site = { - TITLE: "Micro", - DESCRIPTION: "Neeldhara's micro blog.", - EMAIL: "neeldhara.mishra@gmail.com", + TITLE: "Neeldhara", + DESCRIPTION: "Musings on algorithms, games, teaching, and the occasional wandering thought.", + EMAIL: "neeldhara.m@iitgn.ac.in", NUM_POSTS_ON_HOMEPAGE: 5, NUM_PROJECTS_ON_HOMEPAGE: 3, }; export const HOME: Metadata = { 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 = { 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 = { TITLE: "Projects", - DESCRIPTION: - "A collection of my projects with links to repositories and live demos.", + DESCRIPTION: "Side projects and interactive explorations.", }; export const SOCIALS: Socials = [ { - NAME: "X (formerly Twitter)", - HREF: "https://twitter.com/boogerbuttcheek", + NAME: "X", + HREF: "https://x.com/neeldhara", }, { - NAME: "GitHub", - HREF: "https://github.com/trevortylerlee", + NAME: "LinkedIn", + 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", - HREF: "https://trevortylerlee.com", + HREF: "https://neeldhara.com", }, ];