mirror of
https://github.com/prdlk/website.git
synced 2026-08-02 17:31:41 +00:00
refactor(index): simplify homepage sections and add person schema
This commit is contained in:
@@ -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 }[] = [
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user