add
This commit is contained in:
37
superpage/src/data/site-info.ts
Normal file
37
superpage/src/data/site-info.ts
Normal 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;
|
||||
Reference in New Issue
Block a user