@prosophia/personal-cv 0.0.2 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/About.module.css +107 -0
- package/dist/CVSection.module.css +124 -0
- package/dist/Footer.module.css +41 -0
- package/dist/Header.module.css +226 -0
- package/dist/Projects.module.css +114 -0
- package/dist/Publications.module.css +118 -0
- package/dist/index-CZBtPfWB.d.mts +75 -0
- package/dist/index-CZBtPfWB.d.ts +75 -0
- package/dist/index.css +648 -0
- package/dist/index.d.mts +150 -0
- package/dist/index.d.ts +150 -0
- package/dist/index.js +333 -99
- package/dist/index.mjs +314 -92
- package/dist/layouts/index.d.mts +14 -0
- package/dist/layouts/index.d.ts +14 -0
- package/dist/layouts/index.js +73 -0
- package/dist/layouts/index.mjs +46 -0
- package/dist/schemas/index.d.mts +144 -0
- package/dist/schemas/index.d.ts +144 -0
- package/dist/schemas/index.js +582 -0
- package/dist/schemas/index.mjs +540 -0
- package/dist/styles/globals.css +204 -0
- package/package.json +23 -8
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
interface SocialLink {
|
|
2
|
+
platform: string;
|
|
3
|
+
url: string;
|
|
4
|
+
}
|
|
5
|
+
interface NavLink {
|
|
6
|
+
label: string;
|
|
7
|
+
href: string;
|
|
8
|
+
}
|
|
9
|
+
interface SiteSettings {
|
|
10
|
+
siteName: string;
|
|
11
|
+
siteTitle: string;
|
|
12
|
+
primaryColor: string;
|
|
13
|
+
backgroundColor: string;
|
|
14
|
+
textColor: string;
|
|
15
|
+
secondaryTextColor: string;
|
|
16
|
+
contactEmail: string;
|
|
17
|
+
footerText: string;
|
|
18
|
+
}
|
|
19
|
+
interface Navigation {
|
|
20
|
+
links: NavLink[];
|
|
21
|
+
showContactButton: boolean;
|
|
22
|
+
contactButtonText: string;
|
|
23
|
+
}
|
|
24
|
+
interface About {
|
|
25
|
+
name: string;
|
|
26
|
+
greeting: string;
|
|
27
|
+
title: string;
|
|
28
|
+
bio: string;
|
|
29
|
+
profileImageUrl?: string;
|
|
30
|
+
socialLinks?: SocialLink[];
|
|
31
|
+
}
|
|
32
|
+
interface Project {
|
|
33
|
+
_id: string;
|
|
34
|
+
title: string;
|
|
35
|
+
description: string;
|
|
36
|
+
imageUrl?: string;
|
|
37
|
+
imageAlt?: string;
|
|
38
|
+
caseStudyUrl?: string;
|
|
39
|
+
slug?: {
|
|
40
|
+
current: string;
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
interface Publication {
|
|
44
|
+
_id: string;
|
|
45
|
+
title: string;
|
|
46
|
+
authors: string;
|
|
47
|
+
venue: string;
|
|
48
|
+
year: number;
|
|
49
|
+
pdfUrl?: string;
|
|
50
|
+
codeUrl?: string;
|
|
51
|
+
videoUrl?: string;
|
|
52
|
+
bibtex?: string;
|
|
53
|
+
}
|
|
54
|
+
interface CVSection {
|
|
55
|
+
heading: string;
|
|
56
|
+
description: string;
|
|
57
|
+
buttonText: string;
|
|
58
|
+
cvFileUrl?: string;
|
|
59
|
+
}
|
|
60
|
+
interface SiteConfig {
|
|
61
|
+
title: string;
|
|
62
|
+
description: string;
|
|
63
|
+
url?: string;
|
|
64
|
+
}
|
|
65
|
+
interface ThemeConfig {
|
|
66
|
+
primaryColor?: string;
|
|
67
|
+
accentColor?: string;
|
|
68
|
+
}
|
|
69
|
+
interface ProsophiaConfig {
|
|
70
|
+
template?: string;
|
|
71
|
+
site: SiteConfig;
|
|
72
|
+
theme?: ThemeConfig;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export type { About as A, CVSection as C, Navigation as N, ProsophiaConfig as P, SiteSettings as S, ThemeConfig as T, NavLink as a, Project as b, Publication as c, SocialLink as d, SiteConfig as e };
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
interface SocialLink {
|
|
2
|
+
platform: string;
|
|
3
|
+
url: string;
|
|
4
|
+
}
|
|
5
|
+
interface NavLink {
|
|
6
|
+
label: string;
|
|
7
|
+
href: string;
|
|
8
|
+
}
|
|
9
|
+
interface SiteSettings {
|
|
10
|
+
siteName: string;
|
|
11
|
+
siteTitle: string;
|
|
12
|
+
primaryColor: string;
|
|
13
|
+
backgroundColor: string;
|
|
14
|
+
textColor: string;
|
|
15
|
+
secondaryTextColor: string;
|
|
16
|
+
contactEmail: string;
|
|
17
|
+
footerText: string;
|
|
18
|
+
}
|
|
19
|
+
interface Navigation {
|
|
20
|
+
links: NavLink[];
|
|
21
|
+
showContactButton: boolean;
|
|
22
|
+
contactButtonText: string;
|
|
23
|
+
}
|
|
24
|
+
interface About {
|
|
25
|
+
name: string;
|
|
26
|
+
greeting: string;
|
|
27
|
+
title: string;
|
|
28
|
+
bio: string;
|
|
29
|
+
profileImageUrl?: string;
|
|
30
|
+
socialLinks?: SocialLink[];
|
|
31
|
+
}
|
|
32
|
+
interface Project {
|
|
33
|
+
_id: string;
|
|
34
|
+
title: string;
|
|
35
|
+
description: string;
|
|
36
|
+
imageUrl?: string;
|
|
37
|
+
imageAlt?: string;
|
|
38
|
+
caseStudyUrl?: string;
|
|
39
|
+
slug?: {
|
|
40
|
+
current: string;
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
interface Publication {
|
|
44
|
+
_id: string;
|
|
45
|
+
title: string;
|
|
46
|
+
authors: string;
|
|
47
|
+
venue: string;
|
|
48
|
+
year: number;
|
|
49
|
+
pdfUrl?: string;
|
|
50
|
+
codeUrl?: string;
|
|
51
|
+
videoUrl?: string;
|
|
52
|
+
bibtex?: string;
|
|
53
|
+
}
|
|
54
|
+
interface CVSection {
|
|
55
|
+
heading: string;
|
|
56
|
+
description: string;
|
|
57
|
+
buttonText: string;
|
|
58
|
+
cvFileUrl?: string;
|
|
59
|
+
}
|
|
60
|
+
interface SiteConfig {
|
|
61
|
+
title: string;
|
|
62
|
+
description: string;
|
|
63
|
+
url?: string;
|
|
64
|
+
}
|
|
65
|
+
interface ThemeConfig {
|
|
66
|
+
primaryColor?: string;
|
|
67
|
+
accentColor?: string;
|
|
68
|
+
}
|
|
69
|
+
interface ProsophiaConfig {
|
|
70
|
+
template?: string;
|
|
71
|
+
site: SiteConfig;
|
|
72
|
+
theme?: ThemeConfig;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export type { About as A, CVSection as C, Navigation as N, ProsophiaConfig as P, SiteSettings as S, ThemeConfig as T, NavLink as a, Project as b, Publication as c, SocialLink as d, SiteConfig as e };
|