@appcorp/shadcn 1.1.59 → 1.1.60
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 +7 -7
- package/templates/data/school-v1.d.ts +189 -210
- package/templates/data/school-v1.js +191 -144
- package/templates/school-v1/footer.d.ts +1 -1
- package/templates/school-v1/footer.js +22 -17
- package/templates/school-v1/index.d.ts +8 -7
- package/templates/school-v1/index.js +5 -2
- package/templates/school-v1/navigation.js +9 -9
- package/templates/school-v1/sections/about.js +1 -1
- package/templates/school-v1/sections/admissions.js +8 -8
- package/templates/school-v1/sections/faqs.js +2 -2
- package/templates/school-v1/sections/hero.js +2 -2
- package/templates/school-v1/sections/programs.js +1 -1
- package/templates/school-v1/sections/why-choose-us.js +2 -2
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
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.
|
|
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
4
|
var lucide_react_1 = require("lucide-react");
|
|
5
|
+
// Data constants (unchanged)
|
|
6
|
+
// Navigation
|
|
5
7
|
exports.navigationData = {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
},
|
|
10
|
-
navLinks: [
|
|
8
|
+
brandShortName: "LGGS",
|
|
9
|
+
brandFullName: "Lahore Garrison Grammar School",
|
|
10
|
+
items: [
|
|
11
11
|
{ href: "#about", label: "About", enable: true, order: 1 },
|
|
12
12
|
{ href: "#programs", label: "Programs", enable: true, order: 2 },
|
|
13
13
|
{ href: "#why-choose-us", label: "Why Us", enable: true, order: 3 },
|
|
@@ -18,15 +18,13 @@ exports.navigationData = {
|
|
|
18
18
|
{ href: "#policies", label: "Policies", enable: true, order: 8 },
|
|
19
19
|
{ href: "#contact", label: "Contact", enable: true, order: 9 },
|
|
20
20
|
],
|
|
21
|
-
|
|
21
|
+
ctaLabel: "Apply Now",
|
|
22
|
+
ctaHref: "#admissions",
|
|
22
23
|
};
|
|
23
24
|
exports.footerData = {
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
tagline: "Lahore Garrison Grammar School",
|
|
28
|
-
description: "Nurturing Young Minds, Building Bright Futures. A leading English-medium school committed to academic excellence and holistic development since 1990.",
|
|
29
|
-
},
|
|
25
|
+
brandShortName: "LGGS",
|
|
26
|
+
brandFullName: "Lahore Garrison Grammar School",
|
|
27
|
+
brandDescription: "Nurturing Young Minds, Building Bright Futures. A leading English-medium school committed to academic excellence and holistic development since 1990.",
|
|
30
28
|
socialLinks: [
|
|
31
29
|
{ name: "facebook", href: "#", enable: true, order: 1 },
|
|
32
30
|
{ name: "twitter", href: "#", enable: true, order: 2 },
|
|
@@ -42,29 +40,43 @@ exports.footerData = {
|
|
|
42
40
|
{ href: "#contact", label: "Contact Us", enable: true, order: 6 },
|
|
43
41
|
],
|
|
44
42
|
programs: [
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
"
|
|
50
|
-
"
|
|
43
|
+
{
|
|
44
|
+
label: "Playgroup & Nursery (Ages 2–4)",
|
|
45
|
+
id: "1",
|
|
46
|
+
},
|
|
47
|
+
{ label: "Primary School (Ages 5–10)", id: "2" },
|
|
48
|
+
{ label: "Middle School (Ages 11–14)", id: "3" },
|
|
49
|
+
{ label: "Secondary / Matriculation (Ages 15–16)", id: "4" },
|
|
50
|
+
{ label: "Boys Campus", id: "5" },
|
|
51
|
+
{ label: "Girls Campus", id: "6" },
|
|
51
52
|
],
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
53
|
+
address: "Awan Town, Multan Road, Lahore, Pakistan",
|
|
54
|
+
phoneLabel: "042-35961207",
|
|
55
|
+
phoneHref: "tel:+924235961207",
|
|
56
|
+
emailLabel: "admin@lggs.edu.pk",
|
|
57
|
+
emailHref: "mailto:admin@lggs.edu.pk",
|
|
58
|
+
partnerLabel: "AppCorp",
|
|
59
|
+
partnerHref: "https://appcorp.org",
|
|
58
60
|
};
|
|
61
|
+
// About
|
|
59
62
|
exports.aboutData = {
|
|
60
63
|
badge: "About LGGS",
|
|
61
64
|
heading: "More Than a School —",
|
|
62
65
|
headingHighlight: "A Family",
|
|
63
66
|
lead: "Since 1990, Lahore Garrison Grammar School has been a cornerstone of quality education in Lahore. We are not simply a place where children learn subjects — we are a community where young people discover who they are and who they can become.",
|
|
64
67
|
paragraphs: [
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
+
{
|
|
69
|
+
content: "Lahore Garrison Grammar School was established in 1990 and is duly registered with the Directorate of Education Punjab, administered as a private institute affiliated with the Board of Intermediate & Secondary Education, Lahore. It emerged as one of the leading schools of quality education in the city.",
|
|
70
|
+
id: "1",
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
id: "2",
|
|
74
|
+
content: "As a full-time English-medium morning school, LGGS is children's need-oriented — designed and operated with the sole aim of meeting all quality educational requirements in a comprehensive and compassionate way. With separate campuses for boys and girls, we create focused environments where every student can grow academically, socially, and personally.",
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
id: "3",
|
|
78
|
+
content: "The school is widely recognised for its meritorious work in nurturing students at both social and intellectual levels. With the passage of time, LGGS has sustained consistent growth in size, and the quality of its results has been improving year after year — a testament to the dedication of our management, faculty, and students.",
|
|
79
|
+
},
|
|
68
80
|
],
|
|
69
81
|
values: [
|
|
70
82
|
{
|
|
@@ -113,6 +125,7 @@ exports.aboutData = {
|
|
|
113
125
|
{ year: "2024", event: "34+ years strong, 2000+ students thriving" },
|
|
114
126
|
],
|
|
115
127
|
};
|
|
128
|
+
// Admissions
|
|
116
129
|
exports.admissionSteps = [
|
|
117
130
|
{
|
|
118
131
|
icon: lucide_react_1.FileText,
|
|
@@ -158,12 +171,30 @@ exports.keyDates = [
|
|
|
158
171
|
},
|
|
159
172
|
];
|
|
160
173
|
exports.documentsRequired = [
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
174
|
+
{
|
|
175
|
+
id: "1",
|
|
176
|
+
content: "Birth Certificate (Original + Copy)",
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
id: "2",
|
|
180
|
+
content: "Previous School Report Card",
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
id: "3",
|
|
184
|
+
content: "Student's Passport-size Photographs (x4)",
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
id: "4",
|
|
188
|
+
content: "Parent/Guardian's CNIC Copy",
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
id: "5",
|
|
192
|
+
content: "Transfer Certificate (if applicable)",
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
id: "6",
|
|
196
|
+
content: "Vaccination Record (for Nursery/KG)",
|
|
197
|
+
},
|
|
167
198
|
];
|
|
168
199
|
exports.admissionsData = {
|
|
169
200
|
badge: "Admissions",
|
|
@@ -173,11 +204,11 @@ exports.admissionsData = {
|
|
|
173
204
|
stepsTitle: "Admissions Process",
|
|
174
205
|
keyDatesTitle: "Key Dates 2025–2026",
|
|
175
206
|
documentsTitle: "Documents Required",
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
207
|
+
ctaDownloadLabel: "Download Prospectus",
|
|
208
|
+
ctaPhoneLabel: "042-35961207",
|
|
209
|
+
ctaPhoneHref: "tel:+924235961207",
|
|
210
|
+
ctaEmailLabel: "admin@lggs.edu.pk",
|
|
211
|
+
ctaEmailHref: "mailto:admin@lggs.edu.pk",
|
|
181
212
|
admissionSteps: [
|
|
182
213
|
{
|
|
183
214
|
icon: "FileText",
|
|
@@ -211,6 +242,7 @@ exports.admissionsData = {
|
|
|
211
242
|
keyDates: exports.keyDates,
|
|
212
243
|
documentsRequired: exports.documentsRequired,
|
|
213
244
|
};
|
|
245
|
+
// Contact
|
|
214
246
|
exports.contactData = {
|
|
215
247
|
badge: "Contact Us",
|
|
216
248
|
heading: "We Would Love to",
|
|
@@ -274,78 +306,7 @@ exports.contactData = {
|
|
|
274
306
|
secondary: { label: "Call Us Now", href: "tel:+924235961207" },
|
|
275
307
|
},
|
|
276
308
|
};
|
|
277
|
-
|
|
278
|
-
{
|
|
279
|
-
id: "admissions-process",
|
|
280
|
-
category: "Admissions",
|
|
281
|
-
icon: lucide_react_1.Calendar,
|
|
282
|
-
question: "How do I apply for admission to Lahore Garrison Grammar School?",
|
|
283
|
-
answer: "We understand that choosing the right school for your child is one of the most significant decisions you will make. At LGGS, we make the admissions process as smooth and welcoming as possible. You can download our application form from the website or visit either of our campuses in person. Our admissions team is available throughout the year to answer your questions, guide you through the forms, and ensure your child's transition to LGGS is as comfortable as possible.",
|
|
284
|
-
},
|
|
285
|
-
{
|
|
286
|
-
id: "age-groups",
|
|
287
|
-
category: "Programs",
|
|
288
|
-
icon: lucide_react_1.Users,
|
|
289
|
-
question: "What age groups does LGGS cater to?",
|
|
290
|
-
answer: "LGGS warmly welcomes children from the age of 2 onwards through our Playgroup program, all the way through to Matriculation at age 16. Every stage of development is carefully considered — from the gentle, play-based early years to the rigorous academic preparation for board examinations. We believe a seamless educational journey in one trusted institution gives your child the consistency and confidence they deserve.",
|
|
291
|
-
},
|
|
292
|
-
{
|
|
293
|
-
id: "curriculum",
|
|
294
|
-
category: "Academics",
|
|
295
|
-
icon: lucide_react_1.BookOpen,
|
|
296
|
-
question: "What curriculum and examination board does LGGS follow?",
|
|
297
|
-
answer: "LGGS is affiliated with the Board of Intermediate & Secondary Education (BISE), Lahore, and is also registered with the Directorate of Education Punjab. Our curriculum is designed to meet all national standards while incorporating modern, child-centred pedagogical approaches. We are an English-medium school, ensuring your child develops strong language skills that open doors to both national and global opportunities.",
|
|
298
|
-
},
|
|
299
|
-
{
|
|
300
|
-
id: "campuses",
|
|
301
|
-
category: "Facilities",
|
|
302
|
-
icon: lucide_react_1.Shield,
|
|
303
|
-
question: "Why does LGGS have separate campuses for boys and girls?",
|
|
304
|
-
answer: "Providing separate campuses for boys and girls is a deliberate and thoughtful decision rooted in creating the ideal learning environment for every child. We believe students achieve their best when they feel comfortable, focused, and free from social distractions. Both campuses offer the same exceptional standard of education, facilities, and extracurricular activities — ensuring parity and excellence for all our students.",
|
|
305
|
-
},
|
|
306
|
-
{
|
|
307
|
-
id: "facilities",
|
|
308
|
-
category: "Facilities",
|
|
309
|
-
icon: lucide_react_1.GraduationCap,
|
|
310
|
-
question: "What facilities are available at the school?",
|
|
311
|
-
answer: "Your child's growth and well-being are our highest priority. Our campuses feature modern classrooms, fully equipped science and computer laboratories, well-stocked libraries, sports facilities, and safe outdoor play areas. We continuously invest in upgrading our facilities so that every student has access to the resources they need to learn, explore, and thrive.",
|
|
312
|
-
},
|
|
313
|
-
{
|
|
314
|
-
id: "transport",
|
|
315
|
-
category: "Support",
|
|
316
|
-
icon: lucide_react_1.Bus,
|
|
317
|
-
question: "Does LGGS provide school transportation?",
|
|
318
|
-
answer: "We know that your child's safety during commute is a major concern, and we take it very seriously. LGGS offers reliable and safe transportation services covering major areas of Lahore. Our vehicles are maintained to the highest safety standards, operated by experienced drivers, and supervised by responsible staff members — so you can drop off your worry at the door and trust us completely with the rest.",
|
|
319
|
-
},
|
|
320
|
-
{
|
|
321
|
-
id: "fees",
|
|
322
|
-
category: "Fees",
|
|
323
|
-
icon: lucide_react_1.CreditCard,
|
|
324
|
-
question: "What are the school fees, and are scholarships available?",
|
|
325
|
-
answer: "LGGS is committed to making quality education accessible to as many families as possible. Our fee structure is thoughtfully priced to reflect the calibre of education and facilities provided. Detailed fee information is available in our prospectus, which can be downloaded from our website or collected from the school. We also offer merit-based scholarships and financial assistance for deserving students — because a child's potential should never be limited by financial circumstances.",
|
|
326
|
-
},
|
|
327
|
-
{
|
|
328
|
-
id: "extracurricular",
|
|
329
|
-
category: "Activities",
|
|
330
|
-
icon: lucide_react_1.Star,
|
|
331
|
-
question: "What extracurricular activities and events does LGGS offer?",
|
|
332
|
-
answer: "Life at LGGS extends far beyond the classroom. We host a vibrant calendar of events including Annual Sports Competitions, Science & Arts Exhibitions, Creative Writing competitions, Cultural Celebrations (Iqbal Day, National Day events), Story Telling contests, Drawing & Colouring competitions, and much more. These activities are designed to help students discover their passions, develop teamwork, and build the confidence and character that academic learning alone cannot provide.",
|
|
333
|
-
},
|
|
334
|
-
{
|
|
335
|
-
id: "safety",
|
|
336
|
-
category: "Safety",
|
|
337
|
-
icon: lucide_react_1.Heart,
|
|
338
|
-
question: "How does LGGS ensure the safety and well-being of students?",
|
|
339
|
-
answer: "Your child's safety is the absolute foundation upon which everything at LGGS is built. We maintain rigorous security measures at both campuses, with trained security staff, monitored entry and exit, and emergency response protocols. Beyond physical safety, our faculty is trained to identify and sensitively address emotional or social challenges that students may face — creating a school environment where every child feels genuinely seen, heard, and cared for.",
|
|
340
|
-
},
|
|
341
|
-
{
|
|
342
|
-
id: "parent-involvement",
|
|
343
|
-
category: "Community",
|
|
344
|
-
icon: lucide_react_1.Users,
|
|
345
|
-
question: "How can parents stay involved in their child's education at LGGS?",
|
|
346
|
-
answer: "At LGGS, we firmly believe that the partnership between school and home is one of the most powerful factors in a child's success. We encourage parents to attend school events, parent-teacher meetings, and open days. Our administration is always available to discuss your child's progress. We also share regular updates about school life, events, and achievements so that you always feel connected to your child's world at LGGS.",
|
|
347
|
-
},
|
|
348
|
-
];
|
|
309
|
+
// FAQs
|
|
349
310
|
exports.faqs = [
|
|
350
311
|
{
|
|
351
312
|
id: "admissions-process",
|
|
@@ -420,11 +381,12 @@ exports.faqs = [
|
|
|
420
381
|
];
|
|
421
382
|
exports.faqsData = {
|
|
422
383
|
badge: "FAQs",
|
|
384
|
+
items: exports.faqs,
|
|
423
385
|
heading: "Questions We",
|
|
424
386
|
headingHighlight: "Hear Most",
|
|
425
387
|
lead: "We know that choosing the right school raises many questions. Here are honest, detailed answers to the things families ask us most.",
|
|
426
|
-
faqs: exports.faqs,
|
|
427
388
|
};
|
|
389
|
+
// Hero
|
|
428
390
|
exports.heroSlides = [
|
|
429
391
|
{
|
|
430
392
|
id: "welcome",
|
|
@@ -432,8 +394,10 @@ exports.heroSlides = [
|
|
|
432
394
|
headline: "Where Every Child's",
|
|
433
395
|
subheadline: "Potential Becomes Reality",
|
|
434
396
|
description: "For over three decades, Lahore Garrison Grammar School has been nurturing young minds with compassion, excellence, and a deep commitment to shaping confident, capable human beings.",
|
|
435
|
-
|
|
436
|
-
|
|
397
|
+
primaryCtaLabel: "Discover Our School",
|
|
398
|
+
primaryCtaHref: "#about",
|
|
399
|
+
secondaryCtaLabel: "Apply for Admission",
|
|
400
|
+
secondaryCtaHref: "#admissions",
|
|
437
401
|
gradient: "from-blue-950 via-blue-900 to-blue-800",
|
|
438
402
|
accentColor: "text-yellow-400",
|
|
439
403
|
pattern: "radial-gradient(circle at 70% 30%, rgba(255,255,255,0.08) 0%, transparent 60%)",
|
|
@@ -445,8 +409,10 @@ exports.heroSlides = [
|
|
|
445
409
|
headline: "Igniting Curiosity,",
|
|
446
410
|
subheadline: "Building Brilliant Minds",
|
|
447
411
|
description: "Our comprehensive English-medium curriculum, affiliated with BISE Lahore, delivers world-class education from Playgroup through Matriculation — preparing students for life's greatest opportunities.",
|
|
448
|
-
|
|
449
|
-
|
|
412
|
+
primaryCtaLabel: "Explore Programs",
|
|
413
|
+
primaryCtaHref: "#programs",
|
|
414
|
+
secondaryCtaLabel: "Meet Our Team",
|
|
415
|
+
secondaryCtaHref: "#management",
|
|
450
416
|
gradient: "from-emerald-950 via-emerald-900 to-teal-800",
|
|
451
417
|
accentColor: "text-yellow-300",
|
|
452
418
|
pattern: "radial-gradient(circle at 30% 70%, rgba(255,255,255,0.08) 0%, transparent 60%)",
|
|
@@ -458,8 +424,10 @@ exports.heroSlides = [
|
|
|
458
424
|
headline: "Two Campuses,",
|
|
459
425
|
subheadline: "One Shared Dream",
|
|
460
426
|
description: "With dedicated campuses for boys and girls, we create safe, focused, and inspiring learning environments where every student feels seen, valued, and empowered to excel.",
|
|
461
|
-
|
|
462
|
-
|
|
427
|
+
primaryCtaLabel: "Why Choose LGGS",
|
|
428
|
+
primaryCtaHref: "#why-choose-us",
|
|
429
|
+
secondaryCtaLabel: "Read Testimonials",
|
|
430
|
+
secondaryCtaHref: "#testimonials",
|
|
463
431
|
gradient: "from-purple-950 via-purple-900 to-violet-800",
|
|
464
432
|
accentColor: "text-yellow-300",
|
|
465
433
|
pattern: "radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 60%)",
|
|
@@ -471,8 +439,10 @@ exports.heroSlides = [
|
|
|
471
439
|
headline: "Begin Your Child's",
|
|
472
440
|
subheadline: "Journey With Us Today",
|
|
473
441
|
description: "Join thousands of families who trust LGGS with their most precious gift. Our doors are open — let's walk the path to a bright future together. Applications are welcomed year-round.",
|
|
474
|
-
|
|
475
|
-
|
|
442
|
+
primaryCtaLabel: "Apply Now",
|
|
443
|
+
primaryCtaHref: "#admissions",
|
|
444
|
+
secondaryCtaLabel: "Contact Admissions",
|
|
445
|
+
secondaryCtaHref: "#contact",
|
|
476
446
|
gradient: "from-amber-950 via-orange-900 to-red-900",
|
|
477
447
|
accentColor: "text-yellow-300",
|
|
478
448
|
pattern: "radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08) 0%, transparent 60%)",
|
|
@@ -489,6 +459,7 @@ exports.heroData = {
|
|
|
489
459
|
slides: exports.heroSlides,
|
|
490
460
|
stats: exports.heroStats,
|
|
491
461
|
};
|
|
462
|
+
// Management
|
|
492
463
|
exports.managementTeam = [
|
|
493
464
|
{
|
|
494
465
|
avatar: "/zulfiqar-ali.jpg",
|
|
@@ -498,7 +469,6 @@ exports.managementTeam = [
|
|
|
498
469
|
initials: "ZA",
|
|
499
470
|
name: "Mr. Zulfiqar Ali",
|
|
500
471
|
qualifications: "50+ Years of Distinguished Service",
|
|
501
|
-
socialLinks: { facebook: "#", twitter: "#", instagram: "#" },
|
|
502
472
|
title: "Chairman",
|
|
503
473
|
},
|
|
504
474
|
{
|
|
@@ -509,7 +479,6 @@ exports.managementTeam = [
|
|
|
509
479
|
initials: "SA",
|
|
510
480
|
name: "Ms. Salma Awan",
|
|
511
481
|
qualifications: "Masters — Dhaka University | Author & Educationist",
|
|
512
|
-
socialLinks: { facebook: "#", twitter: "#", instagram: "#" },
|
|
513
482
|
title: "Principal",
|
|
514
483
|
},
|
|
515
484
|
{
|
|
@@ -520,7 +489,6 @@ exports.managementTeam = [
|
|
|
520
489
|
initials: "GA",
|
|
521
490
|
name: "Mr. Ghazanfar Ali",
|
|
522
491
|
qualifications: "Masters Finance — Australian National University",
|
|
523
|
-
socialLinks: { facebook: "#", twitter: "#", instagram: "#" },
|
|
524
492
|
title: "Director, HR & Students Affairs",
|
|
525
493
|
},
|
|
526
494
|
{
|
|
@@ -531,7 +499,6 @@ exports.managementTeam = [
|
|
|
531
499
|
initials: "AL",
|
|
532
500
|
name: "Mr. Ali",
|
|
533
501
|
qualifications: "LLB — University of the Punjab",
|
|
534
|
-
socialLinks: { facebook: "#", twitter: "#", instagram: "#" },
|
|
535
502
|
title: "Director, Admin & Legal Affairs",
|
|
536
503
|
},
|
|
537
504
|
{
|
|
@@ -542,7 +509,6 @@ exports.managementTeam = [
|
|
|
542
509
|
initials: "SS",
|
|
543
510
|
name: "Ms. Saadia Shagufta",
|
|
544
511
|
qualifications: "Masters English Literature — University of the Punjab",
|
|
545
|
-
socialLinks: { facebook: "#", twitter: "#", instagram: "#" },
|
|
546
512
|
title: "Director, Academic Affairs",
|
|
547
513
|
},
|
|
548
514
|
];
|
|
@@ -553,6 +519,7 @@ exports.managementData = {
|
|
|
553
519
|
lead: "Our school is guided by a passionate, experienced leadership team committed to maintaining the highest standards of education, care, and institutional integrity.",
|
|
554
520
|
team: exports.managementTeam,
|
|
555
521
|
};
|
|
522
|
+
// Programs
|
|
556
523
|
exports.programs = [
|
|
557
524
|
{
|
|
558
525
|
icon: "baby",
|
|
@@ -625,10 +592,11 @@ exports.programs = [
|
|
|
625
592
|
];
|
|
626
593
|
exports.programsData = {
|
|
627
594
|
badge: "Our Programs",
|
|
628
|
-
title: "A Complete Educational Journey",
|
|
629
595
|
lead: "From a child's very first steps into learning all the way to board examinations, LGGS provides nurturing, rigorous, and joyful education at every stage.",
|
|
630
596
|
programs: exports.programs,
|
|
597
|
+
title: "A Complete Educational Journey",
|
|
631
598
|
};
|
|
599
|
+
// Testimonials
|
|
632
600
|
exports.testimonials = [
|
|
633
601
|
{
|
|
634
602
|
id: "1",
|
|
@@ -743,19 +711,34 @@ exports.whyUsFeatures = [
|
|
|
743
711
|
},
|
|
744
712
|
];
|
|
745
713
|
exports.highlightBadges = [
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
714
|
+
{
|
|
715
|
+
content: "34+ Years of Service",
|
|
716
|
+
id: "1",
|
|
717
|
+
},
|
|
718
|
+
{
|
|
719
|
+
content: "Registered with Directorate of Education Punjab",
|
|
720
|
+
id: "2",
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
content: "BISE Lahore Affiliated",
|
|
724
|
+
id: "3",
|
|
725
|
+
},
|
|
726
|
+
{
|
|
727
|
+
content: "Boys & Girls Campuses",
|
|
728
|
+
id: "4",
|
|
729
|
+
},
|
|
730
|
+
{
|
|
731
|
+
content: "English Medium School",
|
|
732
|
+
id: "5",
|
|
733
|
+
},
|
|
751
734
|
];
|
|
752
735
|
exports.whysUsData = {
|
|
753
736
|
badge: "Why Choose LGGS?",
|
|
754
|
-
title: "Choose Excellence.",
|
|
755
|
-
lead: "Choose LGGS.",
|
|
756
|
-
paragraph: "Every parent wants the very best for their child. At Lahore Garrison Grammar School, we have built an institution where excellence is the baseline — not the exception.",
|
|
757
737
|
features: exports.whyUsFeatures,
|
|
758
738
|
highlights: exports.highlightBadges,
|
|
739
|
+
lead: "Choose LGGS.",
|
|
740
|
+
paragraph: "Every parent wants the very best for their child. At Lahore Garrison Grammar School, we have built an institution where excellence is the baseline — not the exception.",
|
|
741
|
+
title: "Choose Excellence.",
|
|
759
742
|
};
|
|
760
743
|
exports.uniformData = [
|
|
761
744
|
{
|
|
@@ -877,15 +860,19 @@ exports.policyCategories = [
|
|
|
877
860
|
title: "Preamble",
|
|
878
861
|
points: [
|
|
879
862
|
{
|
|
863
|
+
id: "preamble-1",
|
|
880
864
|
text: "These rules apply to all students enrolled at LGGS, including any future branch.",
|
|
881
865
|
},
|
|
882
866
|
{
|
|
867
|
+
id: "preamble-2",
|
|
883
868
|
text: "Management reserves the right to modify, cancel, or amend any rules at any time.",
|
|
884
869
|
},
|
|
885
870
|
{
|
|
871
|
+
id: "preamble-3",
|
|
886
872
|
text: "The Managing Body is the final authority on interpretation of all rules, and its decisions are binding on all students.",
|
|
887
873
|
},
|
|
888
874
|
{
|
|
875
|
+
id: "preamble-4",
|
|
889
876
|
text: "All rules should be read in conjunction with existing and future rules applicable to the school.",
|
|
890
877
|
},
|
|
891
878
|
],
|
|
@@ -895,15 +882,19 @@ exports.policyCategories = [
|
|
|
895
882
|
title: "Definitions",
|
|
896
883
|
points: [
|
|
897
884
|
{
|
|
885
|
+
id: "definitions-1",
|
|
898
886
|
text: '"The School" means Lahore Garrison Grammar School or any of its branches.',
|
|
899
887
|
},
|
|
900
888
|
{
|
|
889
|
+
id: "definitions-2",
|
|
901
890
|
text: '"Management" means the managing body comprising duly constituted members.',
|
|
902
891
|
},
|
|
903
892
|
{
|
|
893
|
+
id: "definitions-3",
|
|
904
894
|
text: '"Competent Authority" means the Principal, Administrator, or any officer delegated relevant powers.',
|
|
905
895
|
},
|
|
906
896
|
{
|
|
897
|
+
id: "definitions-4",
|
|
907
898
|
text: '"Regular Student" means a student enrolled until completion of secondary-level education (Matriculation).',
|
|
908
899
|
},
|
|
909
900
|
],
|
|
@@ -925,23 +916,32 @@ exports.policyCategories = [
|
|
|
925
916
|
id: "admission-policy",
|
|
926
917
|
title: "Admission Policy",
|
|
927
918
|
points: [
|
|
928
|
-
{ text: "Academic session commences in March each year." },
|
|
929
919
|
{
|
|
920
|
+
id: "admission-policy-1",
|
|
921
|
+
text: "Academic session commences in March each year.",
|
|
922
|
+
},
|
|
923
|
+
{
|
|
924
|
+
id: "admission-policy-2",
|
|
930
925
|
text: "Admission to Class I–VIII is based on merit and a written examination in English, Maths, Urdu, and Science.",
|
|
931
926
|
},
|
|
932
927
|
{
|
|
928
|
+
id: "admission-policy-3",
|
|
933
929
|
text: "Shortlisted students are called for an interview and must be accompanied by a parent / guardian.",
|
|
934
930
|
},
|
|
935
931
|
{
|
|
932
|
+
id: "admission-policy-4",
|
|
936
933
|
text: "Admission schedules and interview dates are displayed on school notice boards in mid-November.",
|
|
937
934
|
},
|
|
938
935
|
{
|
|
936
|
+
id: "admission-policy-5",
|
|
939
937
|
text: "A student found unsuitable for a class will not be considered for any other class without a fresh registration and test.",
|
|
940
938
|
},
|
|
941
939
|
{
|
|
940
|
+
id: "admission-policy-6",
|
|
942
941
|
text: "Change of date of birth is not allowed after admission at any stage.",
|
|
943
942
|
},
|
|
944
943
|
{
|
|
944
|
+
id: "admission-policy-7",
|
|
945
945
|
text: "No admission fee is payable if an application for re-admission is submitted within 30 days of withdrawal.",
|
|
946
946
|
},
|
|
947
947
|
],
|
|
@@ -950,10 +950,13 @@ exports.policyCategories = [
|
|
|
950
950
|
id: "age-criteria",
|
|
951
951
|
title: "Age Criteria",
|
|
952
952
|
points: [
|
|
953
|
-
{
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
953
|
+
{
|
|
954
|
+
id: "age-criteria-1",
|
|
955
|
+
text: "Montessori / Play Group: 3 to 3½ years",
|
|
956
|
+
},
|
|
957
|
+
{ id: "age-criteria-2", text: "Preparatory Classes: 4 to 4½ years" },
|
|
958
|
+
{ id: "age-criteria-3", text: "Class I to V: 5 to 10½ years" },
|
|
959
|
+
{ id: "age-criteria-4", text: "Class VI to VIII: 11 to 13 years" },
|
|
957
960
|
],
|
|
958
961
|
},
|
|
959
962
|
{
|
|
@@ -961,9 +964,11 @@ exports.policyCategories = [
|
|
|
961
964
|
title: "Inter-Branch Transfer",
|
|
962
965
|
points: [
|
|
963
966
|
{
|
|
967
|
+
id: "transfer-1",
|
|
964
968
|
text: "No admission fee is charged when a student qualifies for an inter-branch transfer.",
|
|
965
969
|
},
|
|
966
970
|
{
|
|
971
|
+
id: "transfer-2",
|
|
967
972
|
text: "Students of Class IX and X are strongly advised not to seek transfers during the final two years of schooling. The school will not be responsible for any consequences arising from such transfers.",
|
|
968
973
|
},
|
|
969
974
|
],
|
|
@@ -998,15 +1003,19 @@ exports.policyCategories = [
|
|
|
998
1003
|
title: "Examination & Promotion",
|
|
999
1004
|
points: [
|
|
1000
1005
|
{
|
|
1006
|
+
id: "exam-promotion-1",
|
|
1001
1007
|
text: "30–40% of exam papers for Class III–VIII may include unseen content to assess conceptual understanding and creative writing.",
|
|
1002
1008
|
},
|
|
1003
1009
|
{
|
|
1010
|
+
id: "exam-promotion-2",
|
|
1004
1011
|
text: "Students must attain at least 50% marks in all core subjects to be eligible for promotion to the next class.",
|
|
1005
1012
|
},
|
|
1006
1013
|
{
|
|
1014
|
+
id: "exam-promotion-3",
|
|
1007
1015
|
text: "Class VIII students must achieve at least 60% marks in Urdu, English, Science, and Mathematics to opt for science subjects in Class IX.",
|
|
1008
1016
|
},
|
|
1009
1017
|
{
|
|
1018
|
+
id: "exam-promotion-4",
|
|
1010
1019
|
text: "Decisions of the Principal or Staff Council regarding results, promotion, or demotion are final and binding.",
|
|
1011
1020
|
},
|
|
1012
1021
|
],
|
|
@@ -1016,6 +1025,7 @@ exports.policyCategories = [
|
|
|
1016
1025
|
title: "Exam Admission — Grounds for Withholding",
|
|
1017
1026
|
points: [
|
|
1018
1027
|
{
|
|
1028
|
+
id: "exam-withhold-1",
|
|
1019
1029
|
text: "The school may withhold board exam admission forms or roll number slips on any of the following grounds:",
|
|
1020
1030
|
sub: [
|
|
1021
1031
|
"Non-participation or failure in school send-up tests / examinations",
|
|
@@ -1025,6 +1035,7 @@ exports.policyCategories = [
|
|
|
1025
1035
|
],
|
|
1026
1036
|
},
|
|
1027
1037
|
{
|
|
1038
|
+
id: "exam-withhold-2",
|
|
1028
1039
|
text: "The school is not liable for any loss to a student arising from such withholding due to the student's own failure or lapse.",
|
|
1029
1040
|
},
|
|
1030
1041
|
],
|
|
@@ -1047,24 +1058,33 @@ exports.policyCategories = [
|
|
|
1047
1058
|
title: "Fee Rules",
|
|
1048
1059
|
points: [
|
|
1049
1060
|
{
|
|
1061
|
+
id: "fee-rules-1",
|
|
1050
1062
|
text: "Fee is accepted from the 1st to 15th of each month, 8:00 am – 11:00 am. If the 15th falls on a holiday, fees are accepted on the 16th.",
|
|
1051
1063
|
},
|
|
1052
1064
|
{
|
|
1065
|
+
id: "fee-rules-2",
|
|
1053
1066
|
text: "A late fine of Rs. 10/day is charged after the 15th until the 15th of the following month. After that, the student's name is struck off the roll.",
|
|
1054
1067
|
},
|
|
1055
1068
|
{
|
|
1069
|
+
id: "fee-rules-3",
|
|
1056
1070
|
text: "The School reserves the right to review and increase fees by a maximum of 10% per annum without prior notice.",
|
|
1057
1071
|
},
|
|
1058
1072
|
{
|
|
1073
|
+
id: "fee-rules-4",
|
|
1059
1074
|
text: "July and August fees are payable bi-monthly: July with April, and August with May.",
|
|
1060
1075
|
},
|
|
1061
1076
|
{
|
|
1077
|
+
id: "fee-rules-5",
|
|
1062
1078
|
text: "Annual / miscellaneous charges (worksheets, photocopies, etc.) are payable at the start of each academic session and are equivalent to one month's fee.",
|
|
1063
1079
|
},
|
|
1064
1080
|
{
|
|
1081
|
+
id: "fee-rules-6",
|
|
1065
1082
|
text: "Fee concessions or stipends may be granted to deserving students. These are withdrawn if the student fails any subject or exam.",
|
|
1066
1083
|
},
|
|
1067
|
-
{
|
|
1084
|
+
{
|
|
1085
|
+
id: "fee-rules-7",
|
|
1086
|
+
text: "Dues once paid are non-refundable and non-transferable.",
|
|
1087
|
+
},
|
|
1068
1088
|
],
|
|
1069
1089
|
},
|
|
1070
1090
|
{
|
|
@@ -1072,18 +1092,23 @@ exports.policyCategories = [
|
|
|
1072
1092
|
title: "Withdrawal Policy",
|
|
1073
1093
|
points: [
|
|
1074
1094
|
{
|
|
1095
|
+
id: "withdrawal-1",
|
|
1075
1096
|
text: "One month's written notice is required before withdrawing a child, or one month's fee must be paid in lieu of notice.",
|
|
1076
1097
|
},
|
|
1077
1098
|
{
|
|
1099
|
+
id: "withdrawal-2",
|
|
1078
1100
|
text: "No notice is required if withdrawal occurs within one month of the annual result announcement.",
|
|
1079
1101
|
},
|
|
1080
1102
|
{
|
|
1103
|
+
id: "withdrawal-3",
|
|
1081
1104
|
text: "A student advised to withdraw for disciplinary reasons may be removed immediately at the sole discretion of the school.",
|
|
1082
1105
|
},
|
|
1083
1106
|
{
|
|
1107
|
+
id: "withdrawal-4",
|
|
1084
1108
|
text: "A student who fails the same class for two consecutive years may be asked to withdraw.",
|
|
1085
1109
|
},
|
|
1086
1110
|
{
|
|
1111
|
+
id: "withdrawal-5",
|
|
1087
1112
|
text: "School Leaving Certificate is issued only after all dues are cleared.",
|
|
1088
1113
|
},
|
|
1089
1114
|
],
|
|
@@ -1106,21 +1131,27 @@ exports.policyCategories = [
|
|
|
1106
1131
|
title: "Leave & Attendance Rules",
|
|
1107
1132
|
points: [
|
|
1108
1133
|
{
|
|
1134
|
+
id: "leave-rules-1",
|
|
1109
1135
|
text: "Minimum attendance required: 80%. Students below 80% are ineligible to sit for examinations.",
|
|
1110
1136
|
},
|
|
1111
1137
|
{
|
|
1138
|
+
id: "leave-rules-2",
|
|
1112
1139
|
text: "Leave applications must be submitted on a prescribed form, signed by the student's father / lawful guardian, on the day of absence.",
|
|
1113
1140
|
},
|
|
1114
1141
|
{
|
|
1142
|
+
id: "leave-rules-3",
|
|
1115
1143
|
text: "Leave up to 3 days is sanctioned by the class teacher; more than 3 days requires Vice Principal or Principal approval.",
|
|
1116
1144
|
},
|
|
1117
1145
|
{
|
|
1146
|
+
id: "leave-rules-4",
|
|
1118
1147
|
text: "Medical leave of 4+ days requires a certificate from a registered doctor or hospital.",
|
|
1119
1148
|
},
|
|
1120
1149
|
{
|
|
1150
|
+
id: "leave-rules-5",
|
|
1121
1151
|
text: "Absence without permission for 6 consecutive school days results in the student's name being struck off the roll. Re-admission (once only) is available within the next 6 days upon repayment of admission fee.",
|
|
1122
1152
|
},
|
|
1123
1153
|
{
|
|
1154
|
+
id: "leave-rules-6",
|
|
1124
1155
|
text: "Fines for unexcused absences:",
|
|
1125
1156
|
sub: [
|
|
1126
1157
|
"Class I–VIII: Rs. 10/day up to 6 days",
|
|
@@ -1130,6 +1161,7 @@ exports.policyCategories = [
|
|
|
1130
1161
|
],
|
|
1131
1162
|
},
|
|
1132
1163
|
{
|
|
1164
|
+
id: "leave-rules-7",
|
|
1133
1165
|
text: "A student may not leave school premises once attendance is marked, except with permission from the Principal or Vice Principal.",
|
|
1134
1166
|
},
|
|
1135
1167
|
],
|
|
@@ -1139,6 +1171,7 @@ exports.policyCategories = [
|
|
|
1139
1171
|
title: "Discipline Policy",
|
|
1140
1172
|
points: [
|
|
1141
1173
|
{
|
|
1174
|
+
id: "discipline-1",
|
|
1142
1175
|
text: "The following constitute misbehavior or breach of discipline:",
|
|
1143
1176
|
sub: [
|
|
1144
1177
|
"Disobedience or impertinence toward any teacher, coordinator, or Principal",
|
|
@@ -1158,6 +1191,7 @@ exports.policyCategories = [
|
|
|
1158
1191
|
title: "Disciplinary Measures",
|
|
1159
1192
|
points: [
|
|
1160
1193
|
{
|
|
1194
|
+
id: "disciplinary-measures-1",
|
|
1161
1195
|
text: "Depending on severity, progressive disciplinary action may include:",
|
|
1162
1196
|
sub: [
|
|
1163
1197
|
"Counseling and placement under observation (parents informed)",
|
|
@@ -1168,6 +1202,7 @@ exports.policyCategories = [
|
|
|
1168
1202
|
],
|
|
1169
1203
|
},
|
|
1170
1204
|
{
|
|
1205
|
+
id: "disciplinary-measures-2",
|
|
1171
1206
|
text: "For any dispute, a committee is constituted comprising the Vice Principal, a member nominated by the Principal, a staff member nominated by the student, and a senior staff council member. The committee's decision is final and binding.",
|
|
1172
1207
|
},
|
|
1173
1208
|
],
|
|
@@ -1190,30 +1225,39 @@ exports.policyCategories = [
|
|
|
1190
1225
|
title: "General Rules",
|
|
1191
1226
|
points: [
|
|
1192
1227
|
{
|
|
1228
|
+
id: "general-rules-1",
|
|
1193
1229
|
text: "Parents must familiarise themselves fully with all school procedures. Admitting a child constitutes agreement to abide by all rules; no appeal against them will be entertained.",
|
|
1194
1230
|
},
|
|
1195
1231
|
{
|
|
1232
|
+
id: "general-rules-2",
|
|
1196
1233
|
text: "Students must wear the prescribed school uniform at all times while on campus.",
|
|
1197
1234
|
},
|
|
1198
1235
|
{
|
|
1236
|
+
id: "general-rules-3",
|
|
1199
1237
|
text: "Mobile phones are strictly prohibited. A student found with a mobile phone will be fined up to Rs. 1,000.",
|
|
1200
1238
|
},
|
|
1201
1239
|
{
|
|
1240
|
+
id: "general-rules-4",
|
|
1202
1241
|
text: "Late comers are fined Rs. 10/day or may be marked absent. Persistent late-coming may lead to expulsion.",
|
|
1203
1242
|
},
|
|
1204
1243
|
{
|
|
1244
|
+
id: "general-rules-5",
|
|
1205
1245
|
text: "Private telephone calls for students are not entertained; only emergency messages may be conveyed.",
|
|
1206
1246
|
},
|
|
1207
1247
|
{
|
|
1248
|
+
id: "general-rules-6",
|
|
1208
1249
|
text: "Sections allotted to students shall not be changed without valid justification.",
|
|
1209
1250
|
},
|
|
1210
1251
|
{
|
|
1252
|
+
id: "general-rules-7",
|
|
1211
1253
|
text: "The school is not responsible for injuries sustained during sports or co-curricular activities.",
|
|
1212
1254
|
},
|
|
1213
1255
|
{
|
|
1256
|
+
id: "general-rules-8",
|
|
1214
1257
|
text: "The school is not responsible for any consequences of postal delays.",
|
|
1215
1258
|
},
|
|
1216
1259
|
{
|
|
1260
|
+
id: "general-rules-9",
|
|
1217
1261
|
text: "Students are required to enrol for the next class and pay the prescribed fee after promotion, failing which their names will not appear on the class roll.",
|
|
1218
1262
|
},
|
|
1219
1263
|
],
|
|
@@ -1223,12 +1267,15 @@ exports.policyCategories = [
|
|
|
1223
1267
|
title: "School Management Rights",
|
|
1224
1268
|
points: [
|
|
1225
1269
|
{
|
|
1270
|
+
id: "school-management-1",
|
|
1226
1271
|
text: "The school management may shift any branch premises to another location without parental consent, with advance notice.",
|
|
1227
1272
|
},
|
|
1228
1273
|
{
|
|
1274
|
+
id: "school-management-2",
|
|
1229
1275
|
text: "The management reserves the right to make, revise, amend, or introduce any rule as required.",
|
|
1230
1276
|
},
|
|
1231
1277
|
{
|
|
1278
|
+
id: "school-management-3",
|
|
1232
1279
|
text: "Academic and disciplinary rules are not open to challenge.",
|
|
1233
1280
|
},
|
|
1234
1281
|
],
|
|
@@ -1254,10 +1301,10 @@ exports.policyHighlights = [
|
|
|
1254
1301
|
];
|
|
1255
1302
|
exports.policiesData = {
|
|
1256
1303
|
badge: "School Charter",
|
|
1257
|
-
title: "Rules",
|
|
1258
|
-
paragraph: "Policies",
|
|
1259
|
-
lead: "Everything parents and students need to know about how LGGS operates — presented clearly and concisely.",
|
|
1260
|
-
highlights: exports.policyHighlights,
|
|
1261
1304
|
categories: exports.policyCategories,
|
|
1305
|
+
highlights: exports.policyHighlights,
|
|
1306
|
+
lead: "Everything parents and students need to know about how LGGS operates — presented clearly and concisely.",
|
|
1307
|
+
paragraph: "Policies",
|
|
1308
|
+
title: "Rules",
|
|
1262
1309
|
uniforms: exports.uniformData,
|
|
1263
1310
|
};
|