refactor(index): simplify homepage sections and add person schema

This commit is contained in:
Prad Nukala
2026-06-30 12:29:46 -04:00
parent 3e2e68e10a
commit c04bcca6f8
2 changed files with 58 additions and 5 deletions
+18
View File
@@ -25,6 +25,24 @@ export const siteConfig: SiteConfig = {
// The Stream player iframe is loaded from `${streamOrigin}/<videoId>/iframe`.
export const streamOrigin = "https://customer-CODE.cloudflarestream.com";
// Social links shown in the homepage intro and the footer's icon row.
// ! Update the handles below to your own.
export const socialLinks: {
friendlyName: string;
link: string;
name: string;
isWebmention?: boolean;
}[] = [
{ friendlyName: "GitHub", link: "https://github.com/prdlk", name: "mdi:github" },
{ friendlyName: "X", link: "https://x.com/prad_nukala", name: "mdi:twitter" },
{
friendlyName: "LinkedIn",
link: "https://www.linkedin.com/in/prad-nukala/",
name: "mdi:linkedin",
},
{ friendlyName: "Email", link: "mailto:prad@sonr.io", name: "mdi:email-outline" },
];
// Used to generate links in both the Header & Footer.
export const menuLinks: { path: string; title: string }[] = [
{