@appcorp/shadcn 1.1.99 → 2.0.0
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/components/app-sidebar.js +16 -23
- package/components/audio.js +11 -19
- package/components/dashboard.js +27 -65
- package/components/drawer-generic.js +20 -28
- package/components/enhanced-checkbox.js +10 -57
- package/components/enhanced-combobox.js +99 -143
- package/components/enhanced-drawer-footer.js +22 -31
- package/components/enhanced-drawer-header.js +6 -14
- package/components/enhanced-dropzone-impl.d.ts +32 -0
- package/components/enhanced-dropzone-impl.js +218 -0
- package/components/enhanced-dropzone.d.ts +2 -63
- package/components/enhanced-dropzone.js +6 -294
- package/components/enhanced-input.js +10 -57
- package/components/enhanced-label.js +6 -52
- package/components/enhanced-radio.js +12 -20
- package/components/enhanced-select.js +13 -61
- package/components/enhanced-slider.js +11 -58
- package/components/enhanced-switch.js +11 -58
- package/components/enhanced-table-footer-action.js +11 -19
- package/components/enhanced-table-footer-page.js +16 -24
- package/components/enhanced-table-footer-pagination.js +11 -21
- package/components/enhanced-table-header-action.js +22 -30
- package/components/enhanced-table-header-search.js +9 -17
- package/components/enhanced-table.js +125 -153
- package/components/enhanced-textarea.js +10 -57
- package/components/field.d.ts +1 -1
- package/components/field.js +31 -88
- package/components/image-resize-dialog.js +61 -159
- package/components/nav-main.js +32 -78
- package/components/nav-projects.js +37 -48
- package/components/nav-user.js +41 -51
- package/components/show-toast.d.ts +2 -0
- package/components/show-toast.js +7 -0
- package/components/sidebar.d.ts +1 -1
- package/components/sidebar.js +115 -184
- package/components/team-switcher.js +36 -47
- package/components/theme-provider.js +36 -84
- package/components/timeline.d.ts +12 -0
- package/components/timeline.js +13 -0
- package/components/tooltip.js +10 -59
- package/components/ui/accordion.js +17 -67
- package/components/ui/alert-dialog.js +32 -89
- package/components/ui/alert.d.ts +1 -1
- package/components/ui/alert.js +14 -63
- package/components/ui/area-chart-v1-impl.d.ts +19 -0
- package/components/ui/area-chart-v1-impl.js +75 -0
- package/components/ui/area-chart-v1.d.ts +2 -19
- package/components/ui/area-chart-v1.js +4 -113
- package/components/ui/aspect-ratio.js +3 -39
- package/components/ui/avatar.js +13 -62
- package/components/ui/badge.d.ts +2 -2
- package/components/ui/badge.js +7 -55
- package/components/ui/breadcrumb.js +27 -80
- package/components/ui/button.d.ts +2 -2
- package/components/ui/button.js +10 -58
- package/components/ui/calendar-impl.d.ts +8 -0
- package/components/ui/calendar-impl.js +55 -0
- package/components/ui/calendar.d.ts +2 -8
- package/components/ui/calendar.js +5 -108
- package/components/ui/card.js +21 -73
- package/components/ui/carousel-impl.d.ts +18 -0
- package/components/ui/carousel-impl.js +117 -0
- package/components/ui/carousel.d.ts +6 -18
- package/components/ui/carousel.js +8 -170
- package/components/ui/chart-impl.d.ts +62 -0
- package/components/ui/chart-impl.js +162 -0
- package/components/ui/chart.d.ts +7 -62
- package/components/ui/chart.js +9 -219
- package/components/ui/checkbox.js +10 -57
- package/components/ui/collapsible.js +5 -43
- package/components/ui/combobox.js +22 -58
- package/components/ui/command-impl.d.ts +80 -0
- package/components/ui/command-impl.js +63 -0
- package/components/ui/command.d.ts +9 -80
- package/components/ui/command.js +12 -117
- package/components/ui/context-menu.js +41 -102
- package/components/ui/dialog.js +28 -84
- package/components/ui/drawer-impl.d.ts +22 -0
- package/components/ui/drawer-impl.js +56 -0
- package/components/ui/drawer.d.ts +10 -22
- package/components/ui/drawer.js +13 -111
- package/components/ui/dropdown-menu.js +41 -102
- package/components/ui/form.d.ts +4 -2
- package/components/ui/form.js +41 -95
- package/components/ui/hover-card.js +9 -58
- package/components/ui/input-otp-impl.d.ts +34 -0
- package/components/ui/input-otp-impl.js +43 -0
- package/components/ui/input-otp.d.ts +4 -34
- package/components/ui/input-otp.js +7 -92
- package/components/ui/input.js +6 -53
- package/components/ui/label.d.ts +1 -1
- package/components/ui/label.js +9 -56
- package/components/ui/language-selector.js +17 -55
- package/components/ui/menubar.js +46 -108
- package/components/ui/navigation-menu.d.ts +1 -1
- package/components/ui/navigation-menu.js +29 -84
- package/components/ui/pagination.js +30 -83
- package/components/ui/popover.js +10 -60
- package/components/ui/progress.js +8 -55
- package/components/ui/radio-group.js +12 -60
- package/components/ui/resizable-impl.d.ts +24 -0
- package/components/ui/resizable-impl.js +27 -0
- package/components/ui/resizable.d.ts +3 -24
- package/components/ui/resizable.js +6 -78
- package/components/ui/scroll-area.js +10 -58
- package/components/ui/select.js +34 -90
- package/components/ui/separator.js +7 -54
- package/components/ui/sheet.d.ts +1 -1
- package/components/ui/sheet.js +30 -86
- package/components/ui/skeleton.js +5 -21
- package/components/ui/slider.js +10 -57
- package/components/ui/sonner.js +7 -24
- package/components/ui/switch.js +8 -55
- package/components/ui/table.js +27 -81
- package/components/ui/tabs.js +14 -64
- package/components/ui/textarea.js +6 -53
- package/components/ui/theme-switcher.js +41 -91
- package/components/ui/toggle.d.ts +2 -2
- package/components/ui/toggle.js +9 -57
- package/data/admin-dashboard.js +16 -19
- package/hooks/use-enhanced-combobox.js +47 -124
- package/hooks/use-mobile.js +8 -44
- package/hooks/use-outside-click.js +6 -10
- package/lib/themes.js +1 -4
- package/lib/toast-utils.js +78 -120
- package/lib/utils.js +4 -11
- package/package.json +9 -90
- package/utils/transform-breadcrumbs.js +4 -8
- package/utils/transform-navitems.js +7 -22
- package/components/aceternity-ui/apple-cards-carousel.d.ts +0 -35
- package/components/aceternity-ui/apple-cards-carousel.js +0 -263
- package/components/shadcn-example/ai-chat/chat-interface.d.ts +0 -11
- package/components/shadcn-example/ai-chat/chat-interface.js +0 -70
- package/components/shadcn-example/ai-chat/index.d.ts +0 -38
- package/components/shadcn-example/ai-chat/index.js +0 -66
- package/components/shadcn-example/ai-chat/sidebar.d.ts +0 -15
- package/components/shadcn-example/ai-chat/sidebar.js +0 -68
- package/components/shadcn-example/ai-chat/welcome-section.d.ts +0 -12
- package/components/shadcn-example/ai-chat/welcome-section.js +0 -26
- package/components/shadcn-example/authentication/index.d.ts +0 -24
- package/components/shadcn-example/authentication/index.js +0 -59
- package/components/shadcn-example/authentication/user-auth-form.d.ts +0 -11
- package/components/shadcn-example/authentication/user-auth-form.js +0 -54
- package/components/shadcn-example/blog-detail-page/comment-section.d.ts +0 -15
- package/components/shadcn-example/blog-detail-page/comment-section.js +0 -83
- package/components/shadcn-example/blog-detail-page/content.d.ts +0 -7
- package/components/shadcn-example/blog-detail-page/content.js +0 -15
- package/components/shadcn-example/blog-detail-page/header.d.ts +0 -11
- package/components/shadcn-example/blog-detail-page/header.js +0 -36
- package/components/shadcn-example/blog-detail-page/index.d.ts +0 -25
- package/components/shadcn-example/blog-detail-page/index.js +0 -74
- package/components/shadcn-example/blog-page/blog-post-card.d.ts +0 -13
- package/components/shadcn-example/blog-page/blog-post-card.js +0 -30
- package/components/shadcn-example/blog-page/featured-post-sidebar-item.d.ts +0 -10
- package/components/shadcn-example/blog-page/featured-post-sidebar-item.js +0 -19
- package/components/shadcn-example/blog-page/index.d.ts +0 -20
- package/components/shadcn-example/blog-page/index.js +0 -36
- package/components/shadcn-example/coming-soon/countdown.d.ts +0 -2
- package/components/shadcn-example/coming-soon/countdown.js +0 -82
- package/components/shadcn-example/coming-soon/index.d.ts +0 -10
- package/components/shadcn-example/coming-soon/index.js +0 -41
- package/components/shadcn-io/color-picker/index.d.ts +0 -43
- package/components/shadcn-io/color-picker/index.js +0 -304
- package/components/shadcn-io/copy-button/index.d.ts +0 -16
- package/components/shadcn-io/copy-button/index.js +0 -121
- package/components/shadcn-io/dropzone/index.d.ts +0 -19
- package/components/shadcn-io/dropzone/index.js +0 -131
- package/components/shadcn-io/gantt/index.d.ts +0 -145
- package/components/shadcn-io/gantt/index.js +0 -766
- package/components/shadcn-io/table/index.d.ts +0 -60
- package/components/shadcn-io/table/index.js +0 -138
- package/templates/appcorp-v1/footer/bottom-bar.d.ts +0 -6
- package/templates/appcorp-v1/footer/bottom-bar.js +0 -25
- package/templates/appcorp-v1/footer/cta.d.ts +0 -6
- package/templates/appcorp-v1/footer/cta.js +0 -21
- package/templates/appcorp-v1/footer/footer-grid.d.ts +0 -14
- package/templates/appcorp-v1/footer/footer-grid.js +0 -52
- package/templates/appcorp-v1/footer/index.d.ts +0 -3
- package/templates/appcorp-v1/footer/index.js +0 -28
- package/templates/appcorp-v1/footer/newsletter.d.ts +0 -11
- package/templates/appcorp-v1/footer/newsletter.js +0 -28
- package/templates/appcorp-v1/footer/stats.d.ts +0 -6
- package/templates/appcorp-v1/footer/stats.js +0 -15
- package/templates/appcorp-v1/header/announcement-bar.d.ts +0 -3
- package/templates/appcorp-v1/header/announcement-bar.js +0 -15
- package/templates/appcorp-v1/header/dropdown-panel.d.ts +0 -8
- package/templates/appcorp-v1/header/dropdown-panel.js +0 -72
- package/templates/appcorp-v1/header/index.d.ts +0 -12
- package/templates/appcorp-v1/header/index.js +0 -16
- package/templates/appcorp-v1/header/mobile-menu.d.ts +0 -14
- package/templates/appcorp-v1/header/mobile-menu.js +0 -101
- package/templates/appcorp-v1/header/navigation-bar.d.ts +0 -3
- package/templates/appcorp-v1/header/navigation-bar.js +0 -117
- package/templates/appcorp-v1/header/social-button.d.ts +0 -7
- package/templates/appcorp-v1/header/social-button.js +0 -48
- package/templates/appcorp-v1/home.d.ts +0 -3
- package/templates/appcorp-v1/home.js +0 -27
- package/templates/data/appcorp-v1.d.ts +0 -93
- package/templates/data/appcorp-v1.js +0 -348
- package/templates/data/edupilotpro-v1.d.ts +0 -33
- package/templates/data/edupilotpro-v1.js +0 -116
- package/templates/data/school-v1.d.ts +0 -328
- package/templates/data/school-v1.js +0 -1563
- package/templates/edupilotpro-v1/feature-card.d.ts +0 -13
- package/templates/edupilotpro-v1/feature-card.js +0 -28
- package/templates/edupilotpro-v1/mockups/dashboard-mockup.d.ts +0 -3
- package/templates/edupilotpro-v1/mockups/dashboard-mockup.js +0 -55
- package/templates/school-v1/footer.d.ts +0 -3
- package/templates/school-v1/footer.js +0 -75
- package/templates/school-v1/index.d.ts +0 -18
- package/templates/school-v1/index.js +0 -60
- package/templates/school-v1/navigation.d.ts +0 -3
- package/templates/school-v1/navigation.js +0 -123
- package/templates/school-v1/sections/about.d.ts +0 -3
- package/templates/school-v1/sections/about.js +0 -49
- package/templates/school-v1/sections/admissions.d.ts +0 -3
- package/templates/school-v1/sections/admissions.js +0 -77
- package/templates/school-v1/sections/contact.d.ts +0 -3
- package/templates/school-v1/sections/contact.js +0 -67
- package/templates/school-v1/sections/faqs.d.ts +0 -3
- package/templates/school-v1/sections/faqs.js +0 -50
- package/templates/school-v1/sections/hero.d.ts +0 -3
- package/templates/school-v1/sections/hero.js +0 -132
- package/templates/school-v1/sections/management.d.ts +0 -3
- package/templates/school-v1/sections/management.js +0 -34
- package/templates/school-v1/sections/policies.d.ts +0 -3
- package/templates/school-v1/sections/policies.js +0 -127
- package/templates/school-v1/sections/programs.d.ts +0 -3
- package/templates/school-v1/sections/programs.js +0 -107
- package/templates/school-v1/sections/testimonials.d.ts +0 -3
- package/templates/school-v1/sections/testimonials.js +0 -46
- package/templates/school-v1/sections/why-choose-us.d.ts +0 -3
- package/templates/school-v1/sections/why-choose-us.js +0 -57
|
@@ -1,348 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __assign = (this && this.__assign) || function () {
|
|
3
|
-
__assign = Object.assign || function(t) {
|
|
4
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
-
s = arguments[i];
|
|
6
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
-
t[p] = s[p];
|
|
8
|
-
}
|
|
9
|
-
return t;
|
|
10
|
-
};
|
|
11
|
-
return __assign.apply(this, arguments);
|
|
12
|
-
};
|
|
13
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
-
exports.homePageData = exports.footer = exports.header = exports.headerCta = exports.navItems = exports.announcementBar = void 0;
|
|
15
|
-
// Data constants
|
|
16
|
-
exports.announcementBar = {
|
|
17
|
-
text: "Introducing AI Operating System for Business & School — our most powerful products yet.",
|
|
18
|
-
cta: "Explore products →",
|
|
19
|
-
href: "/product/ai-os-business",
|
|
20
|
-
};
|
|
21
|
-
exports.navItems = [
|
|
22
|
-
{
|
|
23
|
-
label: "Products",
|
|
24
|
-
order: 1,
|
|
25
|
-
enabled: true,
|
|
26
|
-
dropdown: [
|
|
27
|
-
{
|
|
28
|
-
label: "AI Operating System for Business",
|
|
29
|
-
description: "An end-to-end AI layer for your entire business — automate operations, unify data, and make decisions 10× faster.",
|
|
30
|
-
href: "/product/ai-os-business",
|
|
31
|
-
icon: "Building2",
|
|
32
|
-
badge: "New",
|
|
33
|
-
order: 1,
|
|
34
|
-
enabled: true,
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
label: "AI Operating System for School",
|
|
38
|
-
description: "Transform your institution with AI — personalised learning, automated admin, and real-time analytics for educators.",
|
|
39
|
-
href: "/product/ai-os-school",
|
|
40
|
-
icon: "GraduationCap",
|
|
41
|
-
badge: "New",
|
|
42
|
-
order: 2,
|
|
43
|
-
enabled: true,
|
|
44
|
-
},
|
|
45
|
-
],
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
label: "Services",
|
|
49
|
-
order: 2,
|
|
50
|
-
enabled: true,
|
|
51
|
-
dropdown: [
|
|
52
|
-
{
|
|
53
|
-
label: "AI & Machine Learning",
|
|
54
|
-
description: "Predictive models, NLP pipelines, LLM integrations, and ML infrastructure built for production scale.",
|
|
55
|
-
href: "/service/ai-machine-learning",
|
|
56
|
-
icon: "Brain",
|
|
57
|
-
order: 1,
|
|
58
|
-
enabled: true,
|
|
59
|
-
},
|
|
60
|
-
{
|
|
61
|
-
label: "Custom Web Development",
|
|
62
|
-
description: "Full-stack web applications engineered for performance, long-term maintainability, and global scale.",
|
|
63
|
-
href: "/service/custom-web-development",
|
|
64
|
-
icon: "Code2",
|
|
65
|
-
order: 2,
|
|
66
|
-
enabled: true,
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
label: "UI / UX Design",
|
|
70
|
-
description: "Research-led design systems and interfaces that reduce churn, increase conversion, and delight users.",
|
|
71
|
-
href: "/service/ui-ux-design",
|
|
72
|
-
icon: "Palette",
|
|
73
|
-
order: 3,
|
|
74
|
-
enabled: true,
|
|
75
|
-
},
|
|
76
|
-
{
|
|
77
|
-
label: "Mobile App Development",
|
|
78
|
-
description: "Cross-platform iOS and Android applications with native performance and offline-first architecture.",
|
|
79
|
-
href: "/service/mobile-app-development",
|
|
80
|
-
icon: "Smartphone",
|
|
81
|
-
order: 4,
|
|
82
|
-
enabled: true,
|
|
83
|
-
},
|
|
84
|
-
{
|
|
85
|
-
label: "MVP Development",
|
|
86
|
-
description: "From validated idea to first paying customer in 8–16 weeks — scoped, engineered, and shipped on time.",
|
|
87
|
-
href: "/service/mvp-development",
|
|
88
|
-
icon: "Rocket",
|
|
89
|
-
badge: "Fast-track",
|
|
90
|
-
order: 5,
|
|
91
|
-
enabled: true,
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
label: "SaaS Platform Development",
|
|
95
|
-
description: "Multi-tenant SaaS platforms built for thousands of customers, millions of events, and ISO-27001 compliance.",
|
|
96
|
-
href: "/service/saas-platform-development",
|
|
97
|
-
icon: "Layers",
|
|
98
|
-
order: 6,
|
|
99
|
-
enabled: true,
|
|
100
|
-
},
|
|
101
|
-
],
|
|
102
|
-
},
|
|
103
|
-
{
|
|
104
|
-
label: "Work",
|
|
105
|
-
order: 3,
|
|
106
|
-
enabled: true,
|
|
107
|
-
dropdown: [
|
|
108
|
-
{
|
|
109
|
-
label: "Case Studies",
|
|
110
|
-
description: "Six in-depth breakdowns of real problems, real architecture decisions, and real measurable business outcomes.",
|
|
111
|
-
href: "/case-study",
|
|
112
|
-
icon: "BarChart3",
|
|
113
|
-
order: 1,
|
|
114
|
-
enabled: true,
|
|
115
|
-
},
|
|
116
|
-
{
|
|
117
|
-
label: "Portfolio",
|
|
118
|
-
description: "500+ projects across fintech, healthcare, logistics, e-commerce, SaaS, and emerging technology.",
|
|
119
|
-
href: "/portfolio",
|
|
120
|
-
icon: "Briefcase",
|
|
121
|
-
order: 2,
|
|
122
|
-
enabled: true,
|
|
123
|
-
},
|
|
124
|
-
{
|
|
125
|
-
label: "Client Results",
|
|
126
|
-
description: "$250M+ in measurable revenue generated for clients. See the numbers behind the outcomes we deliver.",
|
|
127
|
-
href: "/case-study",
|
|
128
|
-
icon: "TrendingUp",
|
|
129
|
-
order: 3,
|
|
130
|
-
enabled: true,
|
|
131
|
-
},
|
|
132
|
-
],
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
label: "Company",
|
|
136
|
-
order: 4,
|
|
137
|
-
enabled: true,
|
|
138
|
-
dropdown: [
|
|
139
|
-
{
|
|
140
|
-
label: "About App Corp",
|
|
141
|
-
description: "The team, the mission, the values, and why 200+ companies across 28 countries trust us with their critical builds.",
|
|
142
|
-
href: "/about",
|
|
143
|
-
icon: "Building2",
|
|
144
|
-
order: 1,
|
|
145
|
-
enabled: true,
|
|
146
|
-
},
|
|
147
|
-
{
|
|
148
|
-
label: "Blog & Engineering Insights",
|
|
149
|
-
description: "Architecture deep-dives, engineering guides, product strategy, and technical commentary from our team.",
|
|
150
|
-
href: "/blog",
|
|
151
|
-
icon: "BookOpen",
|
|
152
|
-
order: 2,
|
|
153
|
-
enabled: true,
|
|
154
|
-
},
|
|
155
|
-
{
|
|
156
|
-
label: "Careers",
|
|
157
|
-
description: "Join a team that ships ambitious products and grows fast. Senior engineering roles always open.",
|
|
158
|
-
href: "/careers",
|
|
159
|
-
icon: "Users",
|
|
160
|
-
badge: "Hiring",
|
|
161
|
-
order: 3,
|
|
162
|
-
enabled: true,
|
|
163
|
-
},
|
|
164
|
-
],
|
|
165
|
-
},
|
|
166
|
-
{
|
|
167
|
-
label: "Contact",
|
|
168
|
-
order: 5,
|
|
169
|
-
enabled: true,
|
|
170
|
-
href: "/contact",
|
|
171
|
-
},
|
|
172
|
-
];
|
|
173
|
-
exports.headerCta = [
|
|
174
|
-
{
|
|
175
|
-
label: "View our work",
|
|
176
|
-
href: "/case-study",
|
|
177
|
-
order: 1,
|
|
178
|
-
enabled: true,
|
|
179
|
-
type: "secondary",
|
|
180
|
-
},
|
|
181
|
-
{
|
|
182
|
-
label: "Schedule a Call",
|
|
183
|
-
href: "/contact-new",
|
|
184
|
-
order: 2,
|
|
185
|
-
enabled: true,
|
|
186
|
-
type: "primary",
|
|
187
|
-
},
|
|
188
|
-
];
|
|
189
|
-
exports.header = {
|
|
190
|
-
navItems: exports.navItems,
|
|
191
|
-
announcementBar: exports.announcementBar,
|
|
192
|
-
headerCta: exports.headerCta,
|
|
193
|
-
logo: "/appcorp-logo.svg",
|
|
194
|
-
email: "info@appcorp.org",
|
|
195
|
-
phone: "+92 349 4913126",
|
|
196
|
-
location: "Lahore, Pakistan",
|
|
197
|
-
};
|
|
198
|
-
exports.footer = {
|
|
199
|
-
name: "App Corp",
|
|
200
|
-
tagline: "We build software that powers the next generation of market leaders.",
|
|
201
|
-
description: "A full-service software engineering agency trusted by startups, scale-ups, and enterprises across the US, UK, and EU. From zero-to-one MVPs to enterprise platform rebuilds — we engineer measurable outcomes, not just code.",
|
|
202
|
-
email: "info@appcorp.org",
|
|
203
|
-
phone: "+92 349 4913126",
|
|
204
|
-
location: "Lahore, Pakistan",
|
|
205
|
-
founded: "2017",
|
|
206
|
-
year: new Date().getFullYear().toString(),
|
|
207
|
-
logo: "/appcorp-logo.svg",
|
|
208
|
-
newsletterBody: "Architecture deep-dives, technology decisions, and product strategy from senior engineers who ship. No fluff.",
|
|
209
|
-
newsletterCta: "Subscribe",
|
|
210
|
-
newsletterDisclaimer: "No spam. Unsubscribe any time.",
|
|
211
|
-
newsletterHeading: "Engineering insights, monthly.",
|
|
212
|
-
newsletterPlaceholder: "your@email.com",
|
|
213
|
-
ctas: [
|
|
214
|
-
{
|
|
215
|
-
label: "Schedule a Call",
|
|
216
|
-
href: "/contact-new",
|
|
217
|
-
type: "primary",
|
|
218
|
-
enabled: true,
|
|
219
|
-
order: 1,
|
|
220
|
-
},
|
|
221
|
-
{
|
|
222
|
-
label: "View our Work",
|
|
223
|
-
href: "/case-study",
|
|
224
|
-
type: "secondary",
|
|
225
|
-
enabled: false,
|
|
226
|
-
order: 2,
|
|
227
|
-
},
|
|
228
|
-
],
|
|
229
|
-
columns: [
|
|
230
|
-
{
|
|
231
|
-
heading: "Products",
|
|
232
|
-
links: [
|
|
233
|
-
{
|
|
234
|
-
label: "AI OS for Business",
|
|
235
|
-
href: "/product/ai-os-business",
|
|
236
|
-
badge: "New",
|
|
237
|
-
},
|
|
238
|
-
{
|
|
239
|
-
label: "AI OS for School",
|
|
240
|
-
href: "/product/ai-os-school",
|
|
241
|
-
badge: "New",
|
|
242
|
-
},
|
|
243
|
-
],
|
|
244
|
-
},
|
|
245
|
-
{
|
|
246
|
-
heading: "Services",
|
|
247
|
-
links: [
|
|
248
|
-
{
|
|
249
|
-
label: "AI & Machine Learning",
|
|
250
|
-
href: "/service/ai-machine-learning",
|
|
251
|
-
},
|
|
252
|
-
{
|
|
253
|
-
label: "Custom Web Development",
|
|
254
|
-
href: "/service/custom-web-development",
|
|
255
|
-
},
|
|
256
|
-
{ label: "UI / UX Design", href: "/service-detail/ui-ux-design" },
|
|
257
|
-
{
|
|
258
|
-
label: "Mobile App Development",
|
|
259
|
-
href: "/service/mobile-app-development",
|
|
260
|
-
},
|
|
261
|
-
{
|
|
262
|
-
label: "MVP Development",
|
|
263
|
-
href: "/service/mvp-development",
|
|
264
|
-
badge: "Fast-track",
|
|
265
|
-
},
|
|
266
|
-
{
|
|
267
|
-
label: "SaaS Platform Development",
|
|
268
|
-
href: "/service/saas-platform-development",
|
|
269
|
-
},
|
|
270
|
-
],
|
|
271
|
-
},
|
|
272
|
-
{
|
|
273
|
-
heading: "Work",
|
|
274
|
-
links: [
|
|
275
|
-
{ label: "Case Studies", href: "/case-study" },
|
|
276
|
-
{ label: "Portfolio", href: "/portfolio" },
|
|
277
|
-
{ label: "Client Results", href: "/case-study" },
|
|
278
|
-
{ label: "Industries We Serve", href: "/about" },
|
|
279
|
-
],
|
|
280
|
-
},
|
|
281
|
-
{
|
|
282
|
-
heading: "Company",
|
|
283
|
-
links: [
|
|
284
|
-
{ label: "About Us", href: "/about" },
|
|
285
|
-
{ label: "Blog & Insights", href: "/blog" },
|
|
286
|
-
{ label: "Pricing", href: "/pricing" },
|
|
287
|
-
{ label: "Careers", href: "/careers", badge: "Hiring" },
|
|
288
|
-
{ label: "Contact Us", href: "/contact" },
|
|
289
|
-
],
|
|
290
|
-
},
|
|
291
|
-
{
|
|
292
|
-
heading: "Legal",
|
|
293
|
-
links: [
|
|
294
|
-
{ label: "Privacy Policy", href: "/privacy" },
|
|
295
|
-
{ label: "Terms & Conditions", href: "/terms" },
|
|
296
|
-
{ label: "Cookie Policy", href: "/privacy" },
|
|
297
|
-
{ label: "Security", href: "/privacy" },
|
|
298
|
-
],
|
|
299
|
-
},
|
|
300
|
-
],
|
|
301
|
-
socialLinks: [
|
|
302
|
-
{
|
|
303
|
-
label: "LinkedIn",
|
|
304
|
-
href: "https://linkedin.com/company/appcorp",
|
|
305
|
-
icon: "Linkedin",
|
|
306
|
-
enabled: true,
|
|
307
|
-
order: 1,
|
|
308
|
-
},
|
|
309
|
-
{
|
|
310
|
-
label: "Twitter / X",
|
|
311
|
-
href: "https://twitter.com/appcorp",
|
|
312
|
-
icon: "Twitter",
|
|
313
|
-
enabled: true,
|
|
314
|
-
order: 2,
|
|
315
|
-
},
|
|
316
|
-
{
|
|
317
|
-
label: "GitHub",
|
|
318
|
-
href: "https://github.com/appcorp",
|
|
319
|
-
icon: "Github",
|
|
320
|
-
enabled: true,
|
|
321
|
-
order: 3,
|
|
322
|
-
},
|
|
323
|
-
{
|
|
324
|
-
label: "YouTube",
|
|
325
|
-
href: "https://youtube.com/@appcorp",
|
|
326
|
-
icon: "Youtube",
|
|
327
|
-
enabled: true,
|
|
328
|
-
order: 4,
|
|
329
|
-
},
|
|
330
|
-
],
|
|
331
|
-
badges: [
|
|
332
|
-
{ label: "AWS Partner", enabled: true, order: 1 },
|
|
333
|
-
{ label: "ISO 27001 Aligned", enabled: true, order: 2 },
|
|
334
|
-
{ label: "SOC 2 Ready", enabled: true, order: 3 },
|
|
335
|
-
{ label: "GDPR Compliant", enabled: true, order: 4 },
|
|
336
|
-
{ label: "PCI DSS Capable", enabled: true, order: 5 },
|
|
337
|
-
],
|
|
338
|
-
stats: [
|
|
339
|
-
{ value: "200+", label: "Projects Shipped" },
|
|
340
|
-
{ value: "100+", label: "Clients Worldwide" },
|
|
341
|
-
{ value: "$50M+", label: "Client Revenue Generated" },
|
|
342
|
-
{ value: "98%", label: "Client Retention Rate" },
|
|
343
|
-
],
|
|
344
|
-
};
|
|
345
|
-
exports.homePageData = {
|
|
346
|
-
siteHeader: __assign({}, exports.header),
|
|
347
|
-
siteFooter: __assign({}, exports.footer),
|
|
348
|
-
};
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
export interface DashboardMockupProps {
|
|
2
|
-
domain: string;
|
|
3
|
-
enrollmentHeading: string;
|
|
4
|
-
enrollmentList: {
|
|
5
|
-
name: string;
|
|
6
|
-
class: string;
|
|
7
|
-
status: string;
|
|
8
|
-
}[];
|
|
9
|
-
items: {
|
|
10
|
-
icon: React.ElementType;
|
|
11
|
-
label: string;
|
|
12
|
-
active: boolean;
|
|
13
|
-
}[];
|
|
14
|
-
schoolName: string;
|
|
15
|
-
stats: {
|
|
16
|
-
label: string;
|
|
17
|
-
value: string;
|
|
18
|
-
color: string;
|
|
19
|
-
}[];
|
|
20
|
-
}
|
|
21
|
-
export declare const dashboardMockupMenuList: DashboardMockupProps;
|
|
22
|
-
export interface FeatureCardsProps {
|
|
23
|
-
items: {
|
|
24
|
-
icon: React.ElementType;
|
|
25
|
-
title: string;
|
|
26
|
-
description: string;
|
|
27
|
-
highlights: string[];
|
|
28
|
-
href: string;
|
|
29
|
-
accent: string;
|
|
30
|
-
bg: string;
|
|
31
|
-
}[];
|
|
32
|
-
}
|
|
33
|
-
export declare const featureCards: FeatureCardsProps;
|
|
@@ -1,116 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.featureCards = exports.dashboardMockupMenuList = void 0;
|
|
4
|
-
var lucide_react_1 = require("lucide-react");
|
|
5
|
-
exports.dashboardMockupMenuList = {
|
|
6
|
-
domain: "subdomain.edupilotpro.com",
|
|
7
|
-
items: [
|
|
8
|
-
{ icon: lucide_react_1.LayoutDashboard, label: "Dashboard", active: true },
|
|
9
|
-
{ icon: lucide_react_1.Users, label: "Students", active: false },
|
|
10
|
-
{ icon: lucide_react_1.BookOpen, label: "Courses", active: false },
|
|
11
|
-
{ icon: lucide_react_1.Calendar, label: "Attendance", active: false },
|
|
12
|
-
{ icon: lucide_react_1.Receipt, label: "Finance", active: false },
|
|
13
|
-
{ icon: lucide_react_1.BarChart3, label: "Analytics", active: false },
|
|
14
|
-
],
|
|
15
|
-
schoolName: "Greenwood Academy",
|
|
16
|
-
stats: [
|
|
17
|
-
{ label: "Students", value: "412", color: "text-blue-600" },
|
|
18
|
-
{ label: "Teachers", value: "34", color: "text-purple-600" },
|
|
19
|
-
{ label: "Attendance", value: "97%", color: "text-green-700" },
|
|
20
|
-
{ label: "Fees Due", value: "$4.2k", color: "text-rose-600" },
|
|
21
|
-
],
|
|
22
|
-
enrollmentHeading: "Recent Enrollments",
|
|
23
|
-
enrollmentList: [
|
|
24
|
-
{ name: "Aisha Patel", class: "Grade 7A", status: "Active" },
|
|
25
|
-
{ name: "Omar Faruk", class: "Grade 5B", status: "Active" },
|
|
26
|
-
{ name: "Lena Müller", class: "Grade 9C", status: "Pending" },
|
|
27
|
-
],
|
|
28
|
-
};
|
|
29
|
-
exports.featureCards = {
|
|
30
|
-
items: [
|
|
31
|
-
{
|
|
32
|
-
icon: lucide_react_1.Users,
|
|
33
|
-
title: "AI Admission Assistant",
|
|
34
|
-
description: "Automate your entire admissions pipeline. The AI Admission Assistant captures enquiries, collects documents, and moves students from application to enrolled — with no manual follow-up from your team.",
|
|
35
|
-
highlights: [
|
|
36
|
-
"Digital admission forms & document collection",
|
|
37
|
-
"AI-guided enrolment workflows",
|
|
38
|
-
"Family portal with sibling linking",
|
|
39
|
-
"Searchable student & family database",
|
|
40
|
-
],
|
|
41
|
-
accent: "text-blue-700",
|
|
42
|
-
bg: "bg-blue-50 dark:bg-blue-950/30",
|
|
43
|
-
href: "/features/student-family",
|
|
44
|
-
},
|
|
45
|
-
{
|
|
46
|
-
icon: lucide_react_1.BookOpen,
|
|
47
|
-
title: "Academic Structure Engine",
|
|
48
|
-
description: "Configure your school's full academic hierarchy — year groups, sections, subjects, courses — once. Every module (attendance, grades, timetables) inherits this structure automatically.",
|
|
49
|
-
highlights: [
|
|
50
|
-
"Multi-level class & section hierarchy",
|
|
51
|
-
"Subject catalogue & course management",
|
|
52
|
-
"Teacher assignments & academic year config",
|
|
53
|
-
"Supports all curriculum frameworks",
|
|
54
|
-
],
|
|
55
|
-
accent: "text-purple-700",
|
|
56
|
-
bg: "bg-purple-50 dark:bg-purple-950/30",
|
|
57
|
-
href: "/features/academic-structure",
|
|
58
|
-
},
|
|
59
|
-
{
|
|
60
|
-
icon: lucide_react_1.Calendar,
|
|
61
|
-
title: "AI Attendance Assistant",
|
|
62
|
-
description: "Teachers mark an entire class present in one tap. The AI Attendance Assistant records every entry, detects chronic absence patterns, and automatically notifies parents — all without lifting a finger.",
|
|
63
|
-
highlights: [
|
|
64
|
-
"One-tap bulk attendance marking",
|
|
65
|
-
"AI-powered absence pattern detection",
|
|
66
|
-
"Instant automated parent notifications",
|
|
67
|
-
"Conflict-free visual timetable builder",
|
|
68
|
-
],
|
|
69
|
-
accent: "text-green-700",
|
|
70
|
-
bg: "bg-green-50 dark:bg-green-950/30",
|
|
71
|
-
href: "/features/attendance-schedules",
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
icon: lucide_react_1.BarChart3,
|
|
75
|
-
title: "AI Reporting Assistant",
|
|
76
|
-
description: "From test scores to polished report cards in one click. The AI Reporting Assistant calculates GPA, ranks students, flags underperformers, and generates print-ready PDFs at the end of every term.",
|
|
77
|
-
highlights: [
|
|
78
|
-
"Automatic GPA & class rank calculation",
|
|
79
|
-
"AI-flagged underperformance alerts",
|
|
80
|
-
"One-click PDF report card generation",
|
|
81
|
-
"Multi-term performance trend analytics",
|
|
82
|
-
],
|
|
83
|
-
accent: "text-orange-700",
|
|
84
|
-
bg: "bg-orange-50 dark:bg-orange-950/30",
|
|
85
|
-
href: "/features/grades-assessments",
|
|
86
|
-
},
|
|
87
|
-
{
|
|
88
|
-
icon: lucide_react_1.CreditCard,
|
|
89
|
-
title: "AI Fee Reminder Automation",
|
|
90
|
-
description: "Build your fee structures once. EduPilotPro auto-generates invoices every term, sends escalating payment reminders automatically, and keeps your outstanding fee dashboard updated in real time.",
|
|
91
|
-
highlights: [
|
|
92
|
-
"Automated termly invoice generation",
|
|
93
|
-
"AI fee reminder sequences to parents",
|
|
94
|
-
"Real-time outstanding balance tracking",
|
|
95
|
-
"Discount, scholarship & exemption management",
|
|
96
|
-
],
|
|
97
|
-
accent: "text-rose-700",
|
|
98
|
-
bg: "bg-rose-50 dark:bg-rose-950/30",
|
|
99
|
-
href: "/features/financial-management",
|
|
100
|
-
},
|
|
101
|
-
{
|
|
102
|
-
icon: lucide_react_1.Shield,
|
|
103
|
-
title: "Smart Role-Based Access",
|
|
104
|
-
description: "Every staff member, teacher, and parent sees exactly what they need. Five permission levels ensure data is protected, workflows are clean, and nothing leaks between roles.",
|
|
105
|
-
highlights: [
|
|
106
|
-
"5-tier role hierarchy (Admin → Parent)",
|
|
107
|
-
"Staff & workspace user management",
|
|
108
|
-
"Audit-ready access and activity logs",
|
|
109
|
-
"Secure, GDPR-compliant authentication",
|
|
110
|
-
],
|
|
111
|
-
accent: "text-teal-700",
|
|
112
|
-
bg: "bg-teal-50 dark:bg-teal-950/30",
|
|
113
|
-
href: "/features/access-control",
|
|
114
|
-
},
|
|
115
|
-
],
|
|
116
|
-
};
|