We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2db568d commit 607d9caCopy full SHA for 607d9ca
client/modules/About/statics/aboutData.ts
@@ -1,4 +1,8 @@
1
-export const ContactSectionLinks = [
+export interface ContactSectionLink {
2
+ label: string;
3
+ href: string;
4
+}
5
+export const ContactSectionLinks: ContactSectionLink[] = [
6
{
7
label: 'About.Github',
8
href: 'https://github.com/processing/p5.js-web-editor'
@@ -22,6 +26,15 @@ export const ContactSectionLinks = [
22
26
}
23
27
];
24
28
29
+export interface AboutSectionInfoItem {
30
+ url: string;
31
+ title: string;
32
+ description: string;
33
34
+export interface AboutSectionInfoSections {
35
+ header: string;
36
+ items: AboutSectionInfoItem[];
37
25
38
export const AboutSectionInfo = [
39
40
header: 'About.NewP5',
0 commit comments