This commit is contained in:
2025-05-05 11:19:03 -03:00
parent 9be27c9ccb
commit fef31734d6
11 changed files with 234 additions and 20 deletions

View File

@@ -0,0 +1,37 @@
export type SocialLink = {
me?: string;
/** Longer descriptive label, e.g. `"Join the Astro community on Discord"` */
text: string;
/** Short label with the name of the platform, e.g. `"Discord"`*/
label: string;
icon: string;
href: string;
/** Platform ID, e.g. `"discord"` */
platform: string;
footerOnly?: boolean;
};
export type SiteInfo = {
name: string;
title: string;
description: string;
image: {
src: string;
alt: string;
};
socialLinks: SocialLink[];
};
const siteInfo: SiteInfo = {
name: "EDUSEG®",
title: " Educação que garante sua segurança",
description:
"Astro builds fast content sites, powerful web applications, dynamic server APIs, and everything in-between.",
image: {
src: "/og/social.jpg",
alt: "Educação que garante sua segurança",
},
socialLinks: [],
};
export default siteInfo;