@appcorp/shadcn 1.1.67 → 1.1.69

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appcorp/shadcn",
3
- "version": "1.1.67",
3
+ "version": "1.1.69",
4
4
  "scripts": {
5
5
  "build:next": "next build",
6
6
  "build:storybook": "mv ../.pnp.cjs ../.pnp.cjs.bak 2>/dev/null || true && storybook build -c .storybook -o .out && mv ../.pnp.cjs.bak ../.pnp.cjs 2>/dev/null || true",
@@ -1,4 +1,3 @@
1
- import type { LucideIcon } from "lucide-react";
2
1
  export type AboutData = {
3
2
  badge?: string;
4
3
  heading: string;
@@ -22,29 +21,22 @@ export type AboutStat = {
22
21
  color: string;
23
22
  };
24
23
  export type AboutValue = {
25
- icon: "Star" | "Heart" | "Target" | "Eye";
24
+ icon: string;
26
25
  title: string;
27
26
  description: string;
28
27
  color: string;
29
28
  iconColor: string;
30
29
  borderColor: string;
31
30
  };
32
- export interface AdmissionStep {
33
- icon: LucideIcon;
34
- step: string;
35
- title: string;
36
- description: string;
37
- color: string;
38
- }
39
- export type AdmissionStepSerializable = {
40
- icon: "FileText" | "Calendar" | "ClipboardList" | "CheckCircle";
31
+ export type AdmissionStep = {
32
+ icon: string;
41
33
  step: string;
42
34
  title: string;
43
35
  description: string;
44
36
  color: string;
45
37
  };
46
38
  export type AdmissionsData = {
47
- admissionSteps: AdmissionStepSerializable[];
39
+ admissionSteps: AdmissionStep[];
48
40
  badge?: string;
49
41
  ctaDownloadLabel: string;
50
42
  ctaEmailHref: string;
@@ -1,25 +1,20 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.policiesData = exports.policyHighlights = exports.policyCategories = exports.uniformData = exports.whysUsData = exports.highlightBadges = exports.whyUsFeatures = exports.testimonialData = exports.testimonials = exports.programsData = exports.programs = exports.managementData = exports.managementTeam = exports.heroData = exports.heroStats = exports.heroSlides = exports.faqsData = exports.faqs = exports.contactData = exports.admissionsData = exports.documentsRequired = exports.keyDates = exports.admissionSteps = exports.aboutData = exports.footerData = exports.navigationData = void 0;
4
- var lucide_react_1 = require("lucide-react");
5
4
  // Data constants (unchanged)
6
5
  // Navigation
7
6
  exports.navigationData = {
8
7
  brandShortName: "LGGS",
9
8
  brandFullName: "Lahore Garrison Grammar School",
10
9
  items: [
11
- { href: "#about", label: "About", enable: true, order: 1 },
10
+ { href: "/", label: "Home", enable: true, order: 1 },
12
11
  { href: "#programs", label: "Programs", enable: true, order: 2 },
13
- { href: "#why-choose-us", label: "Why Us", enable: true, order: 3 },
14
- { href: "#admissions", label: "Admissions", enable: true, order: 4 },
15
- { href: "#testimonials", label: "Testimonials", enable: true, order: 5 },
16
- { href: "#management", label: "Leadership", enable: true, order: 6 },
17
- { href: "#faqs", label: "FAQs", enable: true, order: 7 },
18
- { href: "#policies", label: "Policies", enable: true, order: 8 },
19
- { href: "#contact", label: "Contact", enable: true, order: 9 },
12
+ { href: "/faqs", label: "FAQs", enable: true, order: 7 },
13
+ { href: "/policies", label: "Policies", enable: true, order: 8 },
14
+ { href: "/contact", label: "Contact", enable: true, order: 9 },
20
15
  ],
21
16
  ctaLabel: "Apply Now",
22
- ctaHref: "#admissions",
17
+ ctaHref: "/admissions",
23
18
  };
24
19
  exports.footerData = {
25
20
  brandShortName: "LGGS",
@@ -80,7 +75,7 @@ exports.aboutData = {
80
75
  ],
81
76
  values: [
82
77
  {
83
- icon: "Star",
78
+ icon: "star",
84
79
  title: "Academic Excellence",
85
80
  description: "For over three decades, LGGS has set the standard in Lahore for academic achievement — producing confident, capable graduates who are fully prepared for the next chapter of their lives.",
86
81
  color: "bg-yellow-50",
@@ -88,7 +83,7 @@ exports.aboutData = {
88
83
  borderColor: "border-yellow-100",
89
84
  },
90
85
  {
91
- icon: "Heart",
86
+ icon: "heart",
92
87
  title: "Child-Centered Philosophy",
93
88
  description: "Every decision at LGGS begins and ends with the question: what's best for the child? From curriculum design to pastoral care, your child's happiness and growth guide everything we do.",
94
89
  color: "bg-rose-50",
@@ -96,7 +91,7 @@ exports.aboutData = {
96
91
  borderColor: "border-rose-100",
97
92
  },
98
93
  {
99
- icon: "Target",
94
+ icon: "target",
100
95
  title: "Recognized Standards",
101
96
  description: "LGGS is registered with the Directorate of Education Punjab and affiliated with BISE Lahore — ensuring your child receives a recognized, credentialed education that opens every door.",
102
97
  color: "bg-blue-50",
@@ -104,7 +99,7 @@ exports.aboutData = {
104
99
  borderColor: "border-blue-100",
105
100
  },
106
101
  {
107
- icon: "Eye",
102
+ icon: "eye",
108
103
  title: "Safe, Focused Environments",
109
104
  description: "Our dedicated boys' and girls' campuses are carefully designed to provide distraction-free, nurturing spaces where every student can focus on learning and thriving.",
110
105
  color: "bg-green-50",
@@ -128,28 +123,28 @@ exports.aboutData = {
128
123
  // Admissions
129
124
  exports.admissionSteps = [
130
125
  {
131
- icon: lucide_react_1.FileText,
126
+ icon: "file-text",
132
127
  step: "01",
133
128
  title: "Download the Prospectus",
134
129
  description: "Get our school prospectus from the website or visit our campus. It contains everything you need to know about LGGS — our programs, values, facilities, and fee structure.",
135
130
  color: "bg-blue-100 text-blue-700",
136
131
  },
137
132
  {
138
- icon: lucide_react_1.Calendar,
133
+ icon: "calendar",
139
134
  step: "02",
140
135
  title: "Visit Our Campus",
141
136
  description: "We warmly invite you to tour our campus and meet our faculty. Seeing LGGS in action is the best way to feel the warmth and energy that makes our school truly special. Contact us to arrange your visit.",
142
137
  color: "bg-green-100 text-green-700",
143
138
  },
144
139
  {
145
- icon: lucide_react_1.ClipboardList,
140
+ icon: "clipboard-list",
146
141
  step: "03",
147
142
  title: "Submit Your Application",
148
143
  description: "Complete and submit our admission form along with the required documents. Our admissions team will review your application and get in touch to confirm the next steps for your child's enrollment.",
149
144
  color: "bg-purple-100 text-purple-700",
150
145
  },
151
146
  {
152
- icon: lucide_react_1.CheckCircle,
147
+ icon: "check-circle",
153
148
  step: "04",
154
149
  title: "Welcome to the LGGS Family!",
155
150
  description: "Once your application is confirmed, you will receive a formal offer letter. We will guide you through orientation, uniform requirements, and everything needed to ensure your child's first day at LGGS is wonderful.",
@@ -211,28 +206,28 @@ exports.admissionsData = {
211
206
  ctaEmailHref: "mailto:admin@lggs.edu.pk",
212
207
  admissionSteps: [
213
208
  {
214
- icon: "FileText",
209
+ icon: "file-text",
215
210
  step: "01",
216
211
  title: "Download the Prospectus",
217
212
  description: "Get our school prospectus from the website or visit our campus. It contains everything you need to know about LGGS — our programs, values, facilities, and fee structure.",
218
213
  color: "bg-blue-100 text-blue-700",
219
214
  },
220
215
  {
221
- icon: "Calendar",
216
+ icon: "calendar",
222
217
  step: "02",
223
218
  title: "Visit Our Campus",
224
219
  description: "We warmly invite you to tour our campus and meet our faculty. Seeing LGGS in action is the best way to feel the warmth and energy that makes our school truly special. Contact us to arrange your visit.",
225
220
  color: "bg-green-100 text-green-700",
226
221
  },
227
222
  {
228
- icon: "ClipboardList",
223
+ icon: "clipboard-list",
229
224
  step: "03",
230
225
  title: "Submit Your Application",
231
226
  description: "Complete and submit our admission form along with the required documents. Our admissions team will review your application and get in touch to confirm the next steps for your child's enrollment.",
232
227
  color: "bg-purple-100 text-purple-700",
233
228
  },
234
229
  {
235
- icon: "CheckCircle",
230
+ icon: "check-circle",
236
231
  step: "04",
237
232
  title: "Welcome to the LGGS Family!",
238
233
  description: "Once your application is confirmed, you will receive a formal offer letter. We will guide you through orientation, uniform requirements, and everything needed to ensure your child's first day at LGGS is wonderful.",
@@ -11,7 +11,7 @@ var card_1 = require("../../../components/ui/card");
11
11
  var separator_1 = require("../../../components/ui/separator");
12
12
  var lucide_react_1 = require("lucide-react");
13
13
  var react_1 = __importDefault(require("react"));
14
- var iconMap = { Star: lucide_react_1.Star, Heart: lucide_react_1.Heart, Target: lucide_react_1.Target, Eye: lucide_react_1.Eye };
14
+ var iconMap = { star: lucide_react_1.Star, heart: lucide_react_1.Heart, target: lucide_react_1.Target, eye: lucide_react_1.Eye };
15
15
  var AboutSection = function (_a) {
16
16
  var badge = _a.badge, heading = _a.heading, headingHighlight = _a.headingHighlight, lead = _a.lead, milestones = _a.milestones, paragraphs = _a.paragraphs, stats = _a.stats, values = _a.values;
17
17
  return (react_1.default.createElement("section", { id: "about", className: "overflow-hidden bg-white py-24" },
@@ -12,10 +12,10 @@ var link_1 = __importDefault(require("next/link"));
12
12
  var lucide_react_1 = require("lucide-react");
13
13
  var react_1 = __importDefault(require("react"));
14
14
  var iconMap = {
15
- FileText: lucide_react_1.FileText,
16
- Calendar: lucide_react_1.Calendar,
17
- ClipboardList: lucide_react_1.ClipboardList,
18
- CheckCircle: lucide_react_1.CheckCircle,
15
+ "file-text": lucide_react_1.FileText,
16
+ calendar: lucide_react_1.Calendar,
17
+ "clipboard-list": lucide_react_1.ClipboardList,
18
+ "check-circle": lucide_react_1.CheckCircle,
19
19
  };
20
20
  var statusStyles = {
21
21
  open: "bg-green-100 text-green-700",