@prosophia/personal-cv 0.0.3 → 0.0.5
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.d.mts +174 -0
- package/dist/index.d.ts +174 -0
- package/dist/index.js +325 -64
- package/dist/index.mjs +306 -58
- package/dist/layouts/index.d.mts +14 -0
- package/dist/layouts/index.d.ts +14 -0
- package/dist/layouts/index.js +72 -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 +581 -0
- package/dist/schemas/index.mjs +540 -0
- package/package.json +13 -2
|
@@ -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 };
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { P as ProsophiaConfig } from './index-CZBtPfWB.mjs';
|
|
3
|
+
export { A as About, C as CVSection, a as NavLink, N as Navigation, b as Project, c as Publication, e as SiteConfig, S as SiteSettings, d as SocialLink, T as ThemeConfig } from './index-CZBtPfWB.mjs';
|
|
4
|
+
|
|
5
|
+
interface FooterProps {
|
|
6
|
+
footerText: string;
|
|
7
|
+
email?: string;
|
|
8
|
+
}
|
|
9
|
+
declare function Footer({ footerText, email }: FooterProps): react_jsx_runtime.JSX.Element;
|
|
10
|
+
|
|
11
|
+
interface NavLink$1 {
|
|
12
|
+
label: string;
|
|
13
|
+
href: string;
|
|
14
|
+
}
|
|
15
|
+
interface HeaderProps {
|
|
16
|
+
siteName: string;
|
|
17
|
+
navLinks: NavLink$1[];
|
|
18
|
+
showContactButton?: boolean;
|
|
19
|
+
contactButtonText?: string;
|
|
20
|
+
contactEmail?: string;
|
|
21
|
+
}
|
|
22
|
+
declare function Header({ siteName, navLinks, showContactButton, contactButtonText, contactEmail, }: HeaderProps): react_jsx_runtime.JSX.Element;
|
|
23
|
+
|
|
24
|
+
interface NavLink {
|
|
25
|
+
label: string;
|
|
26
|
+
href: string;
|
|
27
|
+
}
|
|
28
|
+
interface SiteSettings$1 {
|
|
29
|
+
siteName?: string;
|
|
30
|
+
navLinks?: NavLink[];
|
|
31
|
+
showContactButton?: boolean;
|
|
32
|
+
contactButtonText?: string;
|
|
33
|
+
contactEmail?: string;
|
|
34
|
+
footerText?: string;
|
|
35
|
+
}
|
|
36
|
+
interface HomePageProps {
|
|
37
|
+
children?: React.ReactNode;
|
|
38
|
+
settings?: SiteSettings$1 | null;
|
|
39
|
+
header?: React.ReactNode;
|
|
40
|
+
footer?: React.ReactNode;
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* Main HomePage wrapper for personal-cv template
|
|
44
|
+
* Provides consistent header/footer with customizable main content
|
|
45
|
+
*/
|
|
46
|
+
declare function HomePage({ children, settings, header, footer, }: HomePageProps): react_jsx_runtime.JSX.Element;
|
|
47
|
+
|
|
48
|
+
interface Project$1 {
|
|
49
|
+
_id: string;
|
|
50
|
+
title: string;
|
|
51
|
+
description: string;
|
|
52
|
+
imageUrl?: string;
|
|
53
|
+
imageAlt?: string;
|
|
54
|
+
caseStudyUrl?: string;
|
|
55
|
+
slug?: {
|
|
56
|
+
current: string;
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
interface ProjectsProps {
|
|
60
|
+
projects: Project$1[];
|
|
61
|
+
showViewAll?: boolean;
|
|
62
|
+
viewAllUrl?: string;
|
|
63
|
+
}
|
|
64
|
+
declare function Projects({ projects, showViewAll, viewAllUrl, }: ProjectsProps): react_jsx_runtime.JSX.Element;
|
|
65
|
+
|
|
66
|
+
interface Publication$1 {
|
|
67
|
+
_id: string;
|
|
68
|
+
title: string;
|
|
69
|
+
authors: string;
|
|
70
|
+
venue: string;
|
|
71
|
+
year: number;
|
|
72
|
+
pdfUrl?: string;
|
|
73
|
+
codeUrl?: string;
|
|
74
|
+
videoUrl?: string;
|
|
75
|
+
bibtex?: string;
|
|
76
|
+
}
|
|
77
|
+
interface PublicationsProps {
|
|
78
|
+
publications: Publication$1[];
|
|
79
|
+
}
|
|
80
|
+
declare function Publications({ publications }: PublicationsProps): react_jsx_runtime.JSX.Element;
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* Define configuration for your personal CV site
|
|
84
|
+
* @param config - The site configuration object
|
|
85
|
+
* @returns The configuration object (passthrough for type safety)
|
|
86
|
+
*/
|
|
87
|
+
declare function defineConfig(config: ProsophiaConfig): ProsophiaConfig;
|
|
88
|
+
|
|
89
|
+
type Theme = 'light' | 'dark';
|
|
90
|
+
interface ThemeContextType {
|
|
91
|
+
theme: Theme;
|
|
92
|
+
toggleTheme: () => void;
|
|
93
|
+
mounted: boolean;
|
|
94
|
+
}
|
|
95
|
+
declare function ThemeProvider({ children }: {
|
|
96
|
+
children: React.ReactNode;
|
|
97
|
+
}): react_jsx_runtime.JSX.Element;
|
|
98
|
+
declare function useTheme(): ThemeContextType;
|
|
99
|
+
|
|
100
|
+
interface SiteSettings {
|
|
101
|
+
siteName: string;
|
|
102
|
+
siteTitle: string;
|
|
103
|
+
primaryColor: string;
|
|
104
|
+
backgroundColor: string;
|
|
105
|
+
textColor: string;
|
|
106
|
+
secondaryTextColor: string;
|
|
107
|
+
contactEmail: string;
|
|
108
|
+
footerText: string;
|
|
109
|
+
}
|
|
110
|
+
interface Navigation {
|
|
111
|
+
links: {
|
|
112
|
+
label: string;
|
|
113
|
+
href: string;
|
|
114
|
+
}[];
|
|
115
|
+
showContactButton: boolean;
|
|
116
|
+
contactButtonText: string;
|
|
117
|
+
}
|
|
118
|
+
interface About {
|
|
119
|
+
name: string;
|
|
120
|
+
greeting: string;
|
|
121
|
+
title: string;
|
|
122
|
+
bio: string;
|
|
123
|
+
profileImageUrl?: string;
|
|
124
|
+
socialLinks?: {
|
|
125
|
+
platform: string;
|
|
126
|
+
url: string;
|
|
127
|
+
}[];
|
|
128
|
+
}
|
|
129
|
+
interface Project {
|
|
130
|
+
_id: string;
|
|
131
|
+
title: string;
|
|
132
|
+
description: string;
|
|
133
|
+
imageUrl?: string;
|
|
134
|
+
imageAlt?: string;
|
|
135
|
+
caseStudyUrl?: string;
|
|
136
|
+
slug?: {
|
|
137
|
+
current: string;
|
|
138
|
+
};
|
|
139
|
+
}
|
|
140
|
+
interface Publication {
|
|
141
|
+
_id: string;
|
|
142
|
+
title: string;
|
|
143
|
+
authors: string;
|
|
144
|
+
venue: string;
|
|
145
|
+
year: number;
|
|
146
|
+
pdfUrl?: string;
|
|
147
|
+
codeUrl?: string;
|
|
148
|
+
videoUrl?: string;
|
|
149
|
+
bibtex?: string;
|
|
150
|
+
}
|
|
151
|
+
interface CVSection {
|
|
152
|
+
heading: string;
|
|
153
|
+
description: string;
|
|
154
|
+
buttonText: string;
|
|
155
|
+
cvFileUrl?: string;
|
|
156
|
+
}
|
|
157
|
+
declare function getSiteSettings(): Promise<SiteSettings | null>;
|
|
158
|
+
declare function getNavigation(): Promise<Navigation | null>;
|
|
159
|
+
declare function getAbout(): Promise<About | null>;
|
|
160
|
+
declare function getProjects(): Promise<Project[]>;
|
|
161
|
+
declare function getPublications(): Promise<Publication[]>;
|
|
162
|
+
declare function getCVSection(): Promise<CVSection | null>;
|
|
163
|
+
declare function getAllPageData(): Promise<{
|
|
164
|
+
siteSettings: SiteSettings | null;
|
|
165
|
+
navigation: Navigation | null;
|
|
166
|
+
about: About | null;
|
|
167
|
+
projects: Project[];
|
|
168
|
+
publications: Publication[];
|
|
169
|
+
cvSection: CVSection | null;
|
|
170
|
+
}>;
|
|
171
|
+
declare function getProjectBySlug(slug: string): Promise<Project | null>;
|
|
172
|
+
declare function getAllProjectSlugs(): Promise<string[]>;
|
|
173
|
+
|
|
174
|
+
export { Footer, Header, HomePage, type HomePageProps, Projects, ProsophiaConfig, Publications, ThemeProvider, defineConfig, getAbout, getAllPageData, getAllProjectSlugs, getCVSection, getNavigation, getProjectBySlug, getProjects, getPublications, getSiteSettings, useTheme };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { P as ProsophiaConfig } from './index-CZBtPfWB.js';
|
|
3
|
+
export { A as About, C as CVSection, a as NavLink, N as Navigation, b as Project, c as Publication, e as SiteConfig, S as SiteSettings, d as SocialLink, T as ThemeConfig } from './index-CZBtPfWB.js';
|
|
4
|
+
|
|
5
|
+
interface FooterProps {
|
|
6
|
+
footerText: string;
|
|
7
|
+
email?: string;
|
|
8
|
+
}
|
|
9
|
+
declare function Footer({ footerText, email }: FooterProps): react_jsx_runtime.JSX.Element;
|
|
10
|
+
|
|
11
|
+
interface NavLink$1 {
|
|
12
|
+
label: string;
|
|
13
|
+
href: string;
|
|
14
|
+
}
|
|
15
|
+
interface HeaderProps {
|
|
16
|
+
siteName: string;
|
|
17
|
+
navLinks: NavLink$1[];
|
|
18
|
+
showContactButton?: boolean;
|
|
19
|
+
contactButtonText?: string;
|
|
20
|
+
contactEmail?: string;
|
|
21
|
+
}
|
|
22
|
+
declare function Header({ siteName, navLinks, showContactButton, contactButtonText, contactEmail, }: HeaderProps): react_jsx_runtime.JSX.Element;
|
|
23
|
+
|
|
24
|
+
interface NavLink {
|
|
25
|
+
label: string;
|
|
26
|
+
href: string;
|
|
27
|
+
}
|
|
28
|
+
interface SiteSettings$1 {
|
|
29
|
+
siteName?: string;
|
|
30
|
+
navLinks?: NavLink[];
|
|
31
|
+
showContactButton?: boolean;
|
|
32
|
+
contactButtonText?: string;
|
|
33
|
+
contactEmail?: string;
|
|
34
|
+
footerText?: string;
|
|
35
|
+
}
|
|
36
|
+
interface HomePageProps {
|
|
37
|
+
children?: React.ReactNode;
|
|
38
|
+
settings?: SiteSettings$1 | null;
|
|
39
|
+
header?: React.ReactNode;
|
|
40
|
+
footer?: React.ReactNode;
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* Main HomePage wrapper for personal-cv template
|
|
44
|
+
* Provides consistent header/footer with customizable main content
|
|
45
|
+
*/
|
|
46
|
+
declare function HomePage({ children, settings, header, footer, }: HomePageProps): react_jsx_runtime.JSX.Element;
|
|
47
|
+
|
|
48
|
+
interface Project$1 {
|
|
49
|
+
_id: string;
|
|
50
|
+
title: string;
|
|
51
|
+
description: string;
|
|
52
|
+
imageUrl?: string;
|
|
53
|
+
imageAlt?: string;
|
|
54
|
+
caseStudyUrl?: string;
|
|
55
|
+
slug?: {
|
|
56
|
+
current: string;
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
interface ProjectsProps {
|
|
60
|
+
projects: Project$1[];
|
|
61
|
+
showViewAll?: boolean;
|
|
62
|
+
viewAllUrl?: string;
|
|
63
|
+
}
|
|
64
|
+
declare function Projects({ projects, showViewAll, viewAllUrl, }: ProjectsProps): react_jsx_runtime.JSX.Element;
|
|
65
|
+
|
|
66
|
+
interface Publication$1 {
|
|
67
|
+
_id: string;
|
|
68
|
+
title: string;
|
|
69
|
+
authors: string;
|
|
70
|
+
venue: string;
|
|
71
|
+
year: number;
|
|
72
|
+
pdfUrl?: string;
|
|
73
|
+
codeUrl?: string;
|
|
74
|
+
videoUrl?: string;
|
|
75
|
+
bibtex?: string;
|
|
76
|
+
}
|
|
77
|
+
interface PublicationsProps {
|
|
78
|
+
publications: Publication$1[];
|
|
79
|
+
}
|
|
80
|
+
declare function Publications({ publications }: PublicationsProps): react_jsx_runtime.JSX.Element;
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* Define configuration for your personal CV site
|
|
84
|
+
* @param config - The site configuration object
|
|
85
|
+
* @returns The configuration object (passthrough for type safety)
|
|
86
|
+
*/
|
|
87
|
+
declare function defineConfig(config: ProsophiaConfig): ProsophiaConfig;
|
|
88
|
+
|
|
89
|
+
type Theme = 'light' | 'dark';
|
|
90
|
+
interface ThemeContextType {
|
|
91
|
+
theme: Theme;
|
|
92
|
+
toggleTheme: () => void;
|
|
93
|
+
mounted: boolean;
|
|
94
|
+
}
|
|
95
|
+
declare function ThemeProvider({ children }: {
|
|
96
|
+
children: React.ReactNode;
|
|
97
|
+
}): react_jsx_runtime.JSX.Element;
|
|
98
|
+
declare function useTheme(): ThemeContextType;
|
|
99
|
+
|
|
100
|
+
interface SiteSettings {
|
|
101
|
+
siteName: string;
|
|
102
|
+
siteTitle: string;
|
|
103
|
+
primaryColor: string;
|
|
104
|
+
backgroundColor: string;
|
|
105
|
+
textColor: string;
|
|
106
|
+
secondaryTextColor: string;
|
|
107
|
+
contactEmail: string;
|
|
108
|
+
footerText: string;
|
|
109
|
+
}
|
|
110
|
+
interface Navigation {
|
|
111
|
+
links: {
|
|
112
|
+
label: string;
|
|
113
|
+
href: string;
|
|
114
|
+
}[];
|
|
115
|
+
showContactButton: boolean;
|
|
116
|
+
contactButtonText: string;
|
|
117
|
+
}
|
|
118
|
+
interface About {
|
|
119
|
+
name: string;
|
|
120
|
+
greeting: string;
|
|
121
|
+
title: string;
|
|
122
|
+
bio: string;
|
|
123
|
+
profileImageUrl?: string;
|
|
124
|
+
socialLinks?: {
|
|
125
|
+
platform: string;
|
|
126
|
+
url: string;
|
|
127
|
+
}[];
|
|
128
|
+
}
|
|
129
|
+
interface Project {
|
|
130
|
+
_id: string;
|
|
131
|
+
title: string;
|
|
132
|
+
description: string;
|
|
133
|
+
imageUrl?: string;
|
|
134
|
+
imageAlt?: string;
|
|
135
|
+
caseStudyUrl?: string;
|
|
136
|
+
slug?: {
|
|
137
|
+
current: string;
|
|
138
|
+
};
|
|
139
|
+
}
|
|
140
|
+
interface Publication {
|
|
141
|
+
_id: string;
|
|
142
|
+
title: string;
|
|
143
|
+
authors: string;
|
|
144
|
+
venue: string;
|
|
145
|
+
year: number;
|
|
146
|
+
pdfUrl?: string;
|
|
147
|
+
codeUrl?: string;
|
|
148
|
+
videoUrl?: string;
|
|
149
|
+
bibtex?: string;
|
|
150
|
+
}
|
|
151
|
+
interface CVSection {
|
|
152
|
+
heading: string;
|
|
153
|
+
description: string;
|
|
154
|
+
buttonText: string;
|
|
155
|
+
cvFileUrl?: string;
|
|
156
|
+
}
|
|
157
|
+
declare function getSiteSettings(): Promise<SiteSettings | null>;
|
|
158
|
+
declare function getNavigation(): Promise<Navigation | null>;
|
|
159
|
+
declare function getAbout(): Promise<About | null>;
|
|
160
|
+
declare function getProjects(): Promise<Project[]>;
|
|
161
|
+
declare function getPublications(): Promise<Publication[]>;
|
|
162
|
+
declare function getCVSection(): Promise<CVSection | null>;
|
|
163
|
+
declare function getAllPageData(): Promise<{
|
|
164
|
+
siteSettings: SiteSettings | null;
|
|
165
|
+
navigation: Navigation | null;
|
|
166
|
+
about: About | null;
|
|
167
|
+
projects: Project[];
|
|
168
|
+
publications: Publication[];
|
|
169
|
+
cvSection: CVSection | null;
|
|
170
|
+
}>;
|
|
171
|
+
declare function getProjectBySlug(slug: string): Promise<Project | null>;
|
|
172
|
+
declare function getAllProjectSlugs(): Promise<string[]>;
|
|
173
|
+
|
|
174
|
+
export { Footer, Header, HomePage, type HomePageProps, Projects, ProsophiaConfig, Publications, ThemeProvider, defineConfig, getAbout, getAllPageData, getAllProjectSlugs, getCVSection, getNavigation, getProjectBySlug, getProjects, getPublications, getSiteSettings, useTheme };
|