@appcorp/shadcn 1.1.52 → 1.1.53
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/ui/resizable.d.ts +1 -1
- package/package.json +1 -1
- package/templates/data/school-v1.d.ts +254 -83
- package/templates/data/school-v1.js +684 -470
- package/templates/school-v1/footer.d.ts +3 -2
- package/templates/school-v1/footer.js +34 -38
- package/templates/school-v1/index.d.ts +17 -1
- package/templates/school-v1/index.js +36 -15
- package/templates/school-v1/navigation.d.ts +3 -7
- package/templates/school-v1/navigation.js +16 -10
- package/templates/school-v1/sections/about.d.ts +2 -7
- package/templates/school-v1/sections/about.js +17 -37
- package/templates/school-v1/sections/admissions.d.ts +3 -7
- package/templates/school-v1/sections/admissions.js +31 -20
- package/templates/school-v1/sections/contact.d.ts +3 -2
- package/templates/school-v1/sections/contact.js +36 -69
- package/templates/school-v1/sections/faqs.d.ts +3 -5
- package/templates/school-v1/sections/faqs.js +29 -12
- package/templates/school-v1/sections/hero.d.ts +3 -12
- package/templates/school-v1/sections/hero.js +53 -19
- package/templates/school-v1/sections/management.d.ts +3 -5
- package/templates/school-v1/sections/management.js +11 -10
- package/templates/school-v1/sections/policies.d.ts +7 -6
- package/templates/school-v1/sections/policies.js +4 -4
- package/templates/school-v1/sections/programs.d.ts +3 -5
- package/templates/school-v1/sections/programs.js +24 -10
- package/templates/school-v1/sections/testimonials.d.ts +3 -5
- package/templates/school-v1/sections/testimonials.js +13 -12
- package/templates/school-v1/sections/why-choose-us.d.ts +3 -6
- package/templates/school-v1/sections/why-choose-us.js +34 -17
- package/templates/school-v1/sections/news-events.d.ts +0 -2
- package/templates/school-v1/sections/news-events.js +0 -60
|
@@ -1,7 +1,118 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
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.faqsList = 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
|
+
exports.navigationData = {
|
|
6
|
+
brand: {
|
|
7
|
+
shortName: "LGGS",
|
|
8
|
+
fullName: "Lahore Garrison Grammar School",
|
|
9
|
+
},
|
|
10
|
+
navLinks: [
|
|
11
|
+
{ href: "#about", label: "About", enable: true, order: 1 },
|
|
12
|
+
{ 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 },
|
|
20
|
+
],
|
|
21
|
+
applyNow: { label: "Apply Now", href: "#admissions" },
|
|
22
|
+
};
|
|
23
|
+
exports.footerData = {
|
|
24
|
+
brand: {
|
|
25
|
+
shortName: "LGGS",
|
|
26
|
+
fullName: "Lahore Garrison Grammar School",
|
|
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
|
+
},
|
|
30
|
+
socialLinks: [
|
|
31
|
+
{ name: "facebook", href: "#", enable: true, order: 1 },
|
|
32
|
+
{ name: "twitter", href: "#", enable: true, order: 2 },
|
|
33
|
+
{ name: "instagram", href: "#", enable: true, order: 3 },
|
|
34
|
+
{ name: "youtube", href: "#", enable: true, order: 4 },
|
|
35
|
+
],
|
|
36
|
+
quickLinks: [
|
|
37
|
+
{ href: "#about", label: "About LGGS", enable: true, order: 1 },
|
|
38
|
+
{ href: "#programs", label: "Our Programs", enable: true, order: 2 },
|
|
39
|
+
{ href: "#admissions", label: "Admissions", enable: true, order: 3 },
|
|
40
|
+
{ href: "#news", label: "News & Events", enable: true, order: 4 },
|
|
41
|
+
{ href: "/blog", label: "School Blog", enable: true, order: 5 },
|
|
42
|
+
{ href: "#contact", label: "Contact Us", enable: true, order: 6 },
|
|
43
|
+
],
|
|
44
|
+
programs: [
|
|
45
|
+
"Playgroup & Nursery (Ages 2–4)",
|
|
46
|
+
"Primary School (Ages 5–10)",
|
|
47
|
+
"Middle School (Ages 11–14)",
|
|
48
|
+
"Secondary / Matriculation (Ages 15–16)",
|
|
49
|
+
"Boys Campus",
|
|
50
|
+
"Girls Campus",
|
|
51
|
+
],
|
|
52
|
+
contact: {
|
|
53
|
+
address: "Awan Town, Multan Road, Lahore, Pakistan",
|
|
54
|
+
phone: { label: "042-35961207", href: "tel:+924235961207" },
|
|
55
|
+
email: { label: "admin@lggs.edu.pk", href: "mailto:admin@lggs.edu.pk" },
|
|
56
|
+
},
|
|
57
|
+
partners: [{ label: "AppCorp", href: "https://appcorp.org" }],
|
|
58
|
+
};
|
|
59
|
+
exports.aboutData = {
|
|
60
|
+
badge: "About LGGS",
|
|
61
|
+
heading: "More Than a School —",
|
|
62
|
+
headingHighlight: "A Family",
|
|
63
|
+
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
|
+
paragraphs: [
|
|
65
|
+
"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.",
|
|
66
|
+
"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.",
|
|
67
|
+
"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.",
|
|
68
|
+
],
|
|
69
|
+
values: [
|
|
70
|
+
{
|
|
71
|
+
icon: "Star",
|
|
72
|
+
title: "Academic Excellence",
|
|
73
|
+
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.",
|
|
74
|
+
color: "bg-yellow-50",
|
|
75
|
+
iconColor: "text-yellow-600",
|
|
76
|
+
borderColor: "border-yellow-100",
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
icon: "Heart",
|
|
80
|
+
title: "Child-Centered Philosophy",
|
|
81
|
+
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.",
|
|
82
|
+
color: "bg-rose-50",
|
|
83
|
+
iconColor: "text-rose-600",
|
|
84
|
+
borderColor: "border-rose-100",
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
icon: "Target",
|
|
88
|
+
title: "Recognized Standards",
|
|
89
|
+
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.",
|
|
90
|
+
color: "bg-blue-50",
|
|
91
|
+
iconColor: "text-blue-600",
|
|
92
|
+
borderColor: "border-blue-100",
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
icon: "Eye",
|
|
96
|
+
title: "Safe, Focused Environments",
|
|
97
|
+
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.",
|
|
98
|
+
color: "bg-green-50",
|
|
99
|
+
iconColor: "text-green-600",
|
|
100
|
+
borderColor: "border-green-100",
|
|
101
|
+
},
|
|
102
|
+
],
|
|
103
|
+
stats: [
|
|
104
|
+
{ value: "34+", label: "Years of Service", color: "bg-blue-600" },
|
|
105
|
+
{ value: "BISE", label: "Lahore Affiliated", color: "bg-green-600" },
|
|
106
|
+
{ value: "2", label: "Dedicated Campuses", color: "bg-purple-600" },
|
|
107
|
+
{ value: "2000+", label: "Students Annually", color: "bg-orange-500" },
|
|
108
|
+
],
|
|
109
|
+
milestones: [
|
|
110
|
+
{ year: "1990", event: "LGGS founded with a vision for quality education" },
|
|
111
|
+
{ year: "2000", event: "Expanded to separate boys and girls campuses" },
|
|
112
|
+
{ year: "2010", event: "Introduced modern science and computer labs" },
|
|
113
|
+
{ year: "2024", event: "34+ years strong, 2000+ students thriving" },
|
|
114
|
+
],
|
|
115
|
+
};
|
|
5
116
|
exports.admissionSteps = [
|
|
6
117
|
{
|
|
7
118
|
icon: lucide_react_1.FileText,
|
|
@@ -32,6 +143,20 @@ exports.admissionSteps = [
|
|
|
32
143
|
color: "bg-yellow-100 text-yellow-700",
|
|
33
144
|
},
|
|
34
145
|
];
|
|
146
|
+
exports.keyDates = [
|
|
147
|
+
{ date: "Year-Round", event: "Admissions Accepted", status: "open" },
|
|
148
|
+
{
|
|
149
|
+
date: "March 2026",
|
|
150
|
+
event: "New Academic Year Enrollment",
|
|
151
|
+
status: "upcoming",
|
|
152
|
+
},
|
|
153
|
+
{ date: "April 2026", event: "Campus Open Days", status: "upcoming" },
|
|
154
|
+
{
|
|
155
|
+
date: "May 2026",
|
|
156
|
+
event: "Early Registration Discount Period",
|
|
157
|
+
status: "upcoming",
|
|
158
|
+
},
|
|
159
|
+
];
|
|
35
160
|
exports.documentsRequired = [
|
|
36
161
|
"Birth Certificate (Original + Copy)",
|
|
37
162
|
"Previous School Report Card",
|
|
@@ -40,7 +165,116 @@ exports.documentsRequired = [
|
|
|
40
165
|
"Transfer Certificate (if applicable)",
|
|
41
166
|
"Vaccination Record (for Nursery/KG)",
|
|
42
167
|
];
|
|
43
|
-
exports.
|
|
168
|
+
exports.admissionsData = {
|
|
169
|
+
badge: "Admissions",
|
|
170
|
+
heading: "Begin Your Child's",
|
|
171
|
+
headingHighlight: "Journey at LGGS",
|
|
172
|
+
lead: "Joining the LGGS family is a simple, warm, and guided process. We are here to help every family find their path to enrolment.",
|
|
173
|
+
stepsTitle: "Admissions Process",
|
|
174
|
+
keyDatesTitle: "Key Dates 2025–2026",
|
|
175
|
+
documentsTitle: "Documents Required",
|
|
176
|
+
cta: {
|
|
177
|
+
downloadLabel: "Download Prospectus",
|
|
178
|
+
phone: { label: "042-35961207", href: "tel:+924235961207" },
|
|
179
|
+
email: { label: "admin@lggs.edu.pk", href: "mailto:admin@lggs.edu.pk" },
|
|
180
|
+
},
|
|
181
|
+
admissionSteps: [
|
|
182
|
+
{
|
|
183
|
+
icon: "FileText",
|
|
184
|
+
step: "01",
|
|
185
|
+
title: "Download the Prospectus",
|
|
186
|
+
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.",
|
|
187
|
+
color: "bg-blue-100 text-blue-700",
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
icon: "Calendar",
|
|
191
|
+
step: "02",
|
|
192
|
+
title: "Visit Our Campus",
|
|
193
|
+
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.",
|
|
194
|
+
color: "bg-green-100 text-green-700",
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
icon: "ClipboardList",
|
|
198
|
+
step: "03",
|
|
199
|
+
title: "Submit Your Application",
|
|
200
|
+
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.",
|
|
201
|
+
color: "bg-purple-100 text-purple-700",
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
icon: "CheckCircle",
|
|
205
|
+
step: "04",
|
|
206
|
+
title: "Welcome to the LGGS Family!",
|
|
207
|
+
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.",
|
|
208
|
+
color: "bg-yellow-100 text-yellow-700",
|
|
209
|
+
},
|
|
210
|
+
],
|
|
211
|
+
keyDates: exports.keyDates,
|
|
212
|
+
documentsRequired: exports.documentsRequired,
|
|
213
|
+
};
|
|
214
|
+
exports.contactData = {
|
|
215
|
+
badge: "Contact Us",
|
|
216
|
+
heading: "We Would Love to",
|
|
217
|
+
headingHighlight: "Hear From You",
|
|
218
|
+
lead: "Whether you want to arrange a campus visit, ask about admissions, or simply find out more about LGGS — our team is always glad to help.",
|
|
219
|
+
contactDetails: [
|
|
220
|
+
{
|
|
221
|
+
icon: "MapPin",
|
|
222
|
+
label: "Address",
|
|
223
|
+
value: "Awan Town, Multan Road, Lahore",
|
|
224
|
+
href: "https://www.google.com/maps/place/Lahore+Garrison+Grammar+School+(Girls+Campus)/@31.484634,74.254856,15z/data=!4m6!3m5!1s0x39190377d7bf124d:0x3c4510636938221c!8m2!3d31.4846344!4d74.2548563!16s%2Fg%2F11s0ktj4nh?hl=en&entry=ttu&g_ep=EgoyMDI2MDMwNC4xIKXMDSoASAFQAw%3D%3D",
|
|
225
|
+
color: "text-blue-600",
|
|
226
|
+
bg: "bg-blue-50",
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
icon: "Phone",
|
|
230
|
+
label: "Phone",
|
|
231
|
+
value: "042-35961207",
|
|
232
|
+
href: "tel:+924235961207",
|
|
233
|
+
color: "text-green-600",
|
|
234
|
+
bg: "bg-green-50",
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
icon: "Mail",
|
|
238
|
+
label: "Email",
|
|
239
|
+
value: "admin@lggs.edu.pk",
|
|
240
|
+
href: "mailto:admin@lggs.edu.pk",
|
|
241
|
+
color: "text-purple-600",
|
|
242
|
+
bg: "bg-purple-50",
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
icon: "Clock",
|
|
246
|
+
label: "Office Hours",
|
|
247
|
+
value: "Mon – Sat: 8:00 AM – 2:00 PM",
|
|
248
|
+
href: null,
|
|
249
|
+
color: "text-amber-600",
|
|
250
|
+
bg: "bg-amber-50",
|
|
251
|
+
},
|
|
252
|
+
],
|
|
253
|
+
socialLinks: [
|
|
254
|
+
{
|
|
255
|
+
icon: "Facebook",
|
|
256
|
+
href: "https://www.facebook.com/LGGS.Lahore/",
|
|
257
|
+
label: "Facebook",
|
|
258
|
+
},
|
|
259
|
+
{ icon: "Instagram", href: "#", label: "Instagram" },
|
|
260
|
+
{ icon: "Twitter", href: "#", label: "Twitter / X" },
|
|
261
|
+
],
|
|
262
|
+
mapEmbedSrc: "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d13608.254854601666!2d74.24767285761207!3d31.494932487606487!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3919025657a33827%3A0x4c94438286d20882!2sLahore%20Garrison%20Grammar%20School%20(Boys%20Campus)!5e0!3m2!1sen!2s!4v1772957143271!5m2!1sen!2s",
|
|
263
|
+
mapOpenLink: "https://maps.google.com/?q=Lahore+Garrison+Grammar+School+Awan+Town+Multan+Road+Lahore",
|
|
264
|
+
cta: {
|
|
265
|
+
title: "Book a Campus Tour",
|
|
266
|
+
lead: "There is no better way to experience LGGS than visiting in person. Walk our campus, meet our teachers, and see the warm, nurturing environment your child will call home.",
|
|
267
|
+
bullets: [
|
|
268
|
+
"Meet our Principal and faculty",
|
|
269
|
+
"Tour both campuses",
|
|
270
|
+
"Ask your questions in person",
|
|
271
|
+
"Receive the full prospectus",
|
|
272
|
+
],
|
|
273
|
+
primary: { label: "Book a Visit" },
|
|
274
|
+
secondary: { label: "Call Us Now", href: "tel:+924235961207" },
|
|
275
|
+
},
|
|
276
|
+
};
|
|
277
|
+
exports.faqsList = [
|
|
44
278
|
{
|
|
45
279
|
id: "admissions-process",
|
|
46
280
|
category: "Admissions",
|
|
@@ -112,6 +346,85 @@ exports.faqs = [
|
|
|
112
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.",
|
|
113
347
|
},
|
|
114
348
|
];
|
|
349
|
+
exports.faqs = [
|
|
350
|
+
{
|
|
351
|
+
id: "admissions-process",
|
|
352
|
+
category: "Admissions",
|
|
353
|
+
icon: "Calendar",
|
|
354
|
+
question: "How do I apply for admission to Lahore Garrison Grammar School?",
|
|
355
|
+
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.",
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
id: "age-groups",
|
|
359
|
+
category: "Programs",
|
|
360
|
+
icon: "Users",
|
|
361
|
+
question: "What age groups does LGGS cater to?",
|
|
362
|
+
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.",
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
id: "curriculum",
|
|
366
|
+
category: "Academics",
|
|
367
|
+
icon: "BookOpen",
|
|
368
|
+
question: "What curriculum and examination board does LGGS follow?",
|
|
369
|
+
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.",
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
id: "campuses",
|
|
373
|
+
category: "Facilities",
|
|
374
|
+
icon: "Shield",
|
|
375
|
+
question: "Why does LGGS have separate campuses for boys and girls?",
|
|
376
|
+
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.",
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
id: "facilities",
|
|
380
|
+
category: "Facilities",
|
|
381
|
+
icon: "GraduationCap",
|
|
382
|
+
question: "What facilities are available at the school?",
|
|
383
|
+
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.",
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
id: "transport",
|
|
387
|
+
category: "Support",
|
|
388
|
+
icon: "Bus",
|
|
389
|
+
question: "Does LGGS provide school transportation?",
|
|
390
|
+
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.",
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
id: "fees",
|
|
394
|
+
category: "Fees",
|
|
395
|
+
icon: "CreditCard",
|
|
396
|
+
question: "What are the school fees, and are scholarships available?",
|
|
397
|
+
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.",
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
id: "extracurricular",
|
|
401
|
+
category: "Activities",
|
|
402
|
+
icon: "Star",
|
|
403
|
+
question: "What extracurricular activities and events does LGGS offer?",
|
|
404
|
+
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.",
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
id: "safety",
|
|
408
|
+
category: "Safety",
|
|
409
|
+
icon: "Heart",
|
|
410
|
+
question: "How does LGGS ensure the safety and well-being of students?",
|
|
411
|
+
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.",
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
id: "parent-involvement",
|
|
415
|
+
category: "Community",
|
|
416
|
+
icon: "Users",
|
|
417
|
+
question: "How can parents stay involved in their child's education at LGGS?",
|
|
418
|
+
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.",
|
|
419
|
+
},
|
|
420
|
+
];
|
|
421
|
+
exports.faqsData = {
|
|
422
|
+
badge: "FAQs",
|
|
423
|
+
heading: "Questions We",
|
|
424
|
+
headingHighlight: "Hear Most",
|
|
425
|
+
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
|
+
};
|
|
115
428
|
exports.heroSlides = [
|
|
116
429
|
{
|
|
117
430
|
id: "welcome",
|
|
@@ -172,27 +485,10 @@ exports.heroStats = [
|
|
|
172
485
|
{ value: "2", label: "Dedicated Campuses", icon: "building" },
|
|
173
486
|
{ value: "100%", label: "Committed to Your Child", icon: "heart" },
|
|
174
487
|
];
|
|
175
|
-
exports.
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
"Boys & Girls Campuses",
|
|
180
|
-
"English Medium School",
|
|
181
|
-
];
|
|
182
|
-
exports.keyDates = [
|
|
183
|
-
{ date: "Year-Round", event: "Admissions Accepted", status: "open" },
|
|
184
|
-
{
|
|
185
|
-
date: "March 2026",
|
|
186
|
-
event: "New Academic Year Enrollment",
|
|
187
|
-
status: "upcoming",
|
|
188
|
-
},
|
|
189
|
-
{ date: "April 2026", event: "Campus Open Days", status: "upcoming" },
|
|
190
|
-
{
|
|
191
|
-
date: "May 2026",
|
|
192
|
-
event: "Early Registration Discount Period",
|
|
193
|
-
status: "upcoming",
|
|
194
|
-
},
|
|
195
|
-
];
|
|
488
|
+
exports.heroData = {
|
|
489
|
+
slides: exports.heroSlides,
|
|
490
|
+
stats: exports.heroStats,
|
|
491
|
+
};
|
|
196
492
|
exports.managementTeam = [
|
|
197
493
|
{
|
|
198
494
|
avatar: "/zulfiqar-ali.jpg",
|
|
@@ -250,116 +546,384 @@ exports.managementTeam = [
|
|
|
250
546
|
title: "Director, Academic Affairs",
|
|
251
547
|
},
|
|
252
548
|
];
|
|
253
|
-
exports.
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
{
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
549
|
+
exports.managementData = {
|
|
550
|
+
badge: "Leadership",
|
|
551
|
+
heading: "The Dedicated Team",
|
|
552
|
+
headingHighlight: "Behind LGGS",
|
|
553
|
+
lead: "Our school is guided by a passionate, experienced leadership team committed to maintaining the highest standards of education, care, and institutional integrity.",
|
|
554
|
+
team: exports.managementTeam,
|
|
555
|
+
};
|
|
556
|
+
exports.programs = [
|
|
557
|
+
{
|
|
558
|
+
icon: "baby",
|
|
559
|
+
title: "Playgroup & Nursery",
|
|
560
|
+
ages: "Ages 2–4",
|
|
561
|
+
color: "bg-pink-500",
|
|
562
|
+
lightColor: "bg-pink-50",
|
|
563
|
+
textColor: "text-pink-700",
|
|
564
|
+
borderColor: "border-pink-200",
|
|
565
|
+
description: "Your child's first school experience is precious. Our Playgroup and Nursery programs provide a wonderfully gentle introduction to learning — through play, creative exploration, and loving interaction, laying the foundation for a lifelong love of learning.",
|
|
566
|
+
highlights: [
|
|
567
|
+
"Play-based discovery learning",
|
|
568
|
+
"Social & emotional development",
|
|
569
|
+
"Language & communication",
|
|
570
|
+
"Creative arts & crafts",
|
|
571
|
+
"Safe, stimulating environment",
|
|
572
|
+
],
|
|
573
|
+
},
|
|
574
|
+
{
|
|
575
|
+
icon: "book-open",
|
|
576
|
+
title: "Primary Education",
|
|
577
|
+
ages: "Ages 5–10",
|
|
578
|
+
color: "bg-blue-500",
|
|
579
|
+
lightColor: "bg-blue-50",
|
|
580
|
+
textColor: "text-blue-700",
|
|
581
|
+
borderColor: "border-blue-200",
|
|
582
|
+
description: "Strong foundations are everything. Our Primary section builds essential skills in English, Urdu, Mathematics, Science, and Social Studies with a curriculum that balances academic rigour with creative exploration — sparking curiosity in every young mind.",
|
|
583
|
+
highlights: [
|
|
584
|
+
"English & Urdu medium education",
|
|
585
|
+
"Core subject mastery",
|
|
586
|
+
"Science experiments & discovery",
|
|
587
|
+
"Arts, crafts & physical education",
|
|
588
|
+
"Character & values formation",
|
|
589
|
+
],
|
|
590
|
+
},
|
|
591
|
+
{
|
|
592
|
+
icon: "user",
|
|
593
|
+
title: "Middle School",
|
|
594
|
+
ages: "Ages 11–14",
|
|
595
|
+
color: "bg-green-500",
|
|
596
|
+
lightColor: "bg-green-50",
|
|
597
|
+
textColor: "text-green-700",
|
|
598
|
+
borderColor: "border-green-200",
|
|
599
|
+
description: "The middle years are a time of discovery, growth, and building identity. Our Middle School program challenges students academically while offering the pastoral care and mentorship they need to navigate this transformative stage with confidence.",
|
|
600
|
+
highlights: [
|
|
601
|
+
"Advanced subject curriculum",
|
|
602
|
+
"Critical thinking development",
|
|
603
|
+
"Leadership opportunities",
|
|
604
|
+
"Extracurricular activities",
|
|
605
|
+
"Dedicated pastoral support",
|
|
606
|
+
],
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
icon: "graduation-cap",
|
|
610
|
+
title: "Secondary & Matriculation",
|
|
611
|
+
ages: "Ages 15–16",
|
|
612
|
+
color: "bg-purple-500",
|
|
613
|
+
lightColor: "bg-purple-50",
|
|
614
|
+
textColor: "text-purple-700",
|
|
615
|
+
borderColor: "border-purple-200",
|
|
616
|
+
description: "The culmination of the LGGS journey — our Secondary program prepares students for BISE Lahore board examinations with rigorous academics, personalized guidance, and the skills needed to unlock their chosen path in life.",
|
|
617
|
+
highlights: [
|
|
618
|
+
"BISE Lahore board preparation",
|
|
619
|
+
"Science & Arts streams",
|
|
620
|
+
"Career counselling & guidance",
|
|
621
|
+
"University readiness programs",
|
|
622
|
+
"Board exam success strategies",
|
|
623
|
+
],
|
|
624
|
+
},
|
|
269
625
|
];
|
|
270
|
-
exports.
|
|
626
|
+
exports.programsData = {
|
|
627
|
+
badge: "Our Programs",
|
|
628
|
+
title: "A Complete Educational Journey",
|
|
629
|
+
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
|
+
programs: exports.programs,
|
|
631
|
+
};
|
|
632
|
+
exports.testimonials = [
|
|
271
633
|
{
|
|
272
634
|
id: "1",
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
635
|
+
quote: "LGGS has been the best decision we made for our son. The teachers here are not just educators — they are mentors who genuinely care about each child. His confidence has grown tremendously and his results speak for themselves.",
|
|
636
|
+
name: "Ahmed Raza",
|
|
637
|
+
role: "Parent, Grade 8 Student",
|
|
638
|
+
initials: "AR",
|
|
639
|
+
gradientFrom: "from-blue-600",
|
|
640
|
+
gradientTo: "to-blue-800",
|
|
279
641
|
},
|
|
280
642
|
{
|
|
281
643
|
id: "2",
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
644
|
+
quote: "When I moved to Lahore, I was worried about finding a school that would make my daughter feel welcomed and safe. LGGS exceeded every expectation. The separate campus for girls is such a thoughtful decision — she thrives there.",
|
|
645
|
+
name: "Fatima Malik",
|
|
646
|
+
role: "Parent, Grade 6 Student",
|
|
647
|
+
initials: "FM",
|
|
648
|
+
gradientFrom: "from-purple-600",
|
|
649
|
+
gradientTo: "to-purple-800",
|
|
288
650
|
},
|
|
289
651
|
{
|
|
290
652
|
id: "3",
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
653
|
+
quote: "I completed my Matriculation from LGGS in 2022 and it shaped everything I am today. The discipline, the values, and the incredible faculty gave me not just knowledge but purpose. I am so proud to call myself an LGGS graduate.",
|
|
654
|
+
name: "Bilal Hussain",
|
|
655
|
+
role: "Former Student, Class of 2022",
|
|
656
|
+
initials: "BH",
|
|
657
|
+
gradientFrom: "from-green-600",
|
|
658
|
+
gradientTo: "to-emerald-800",
|
|
297
659
|
},
|
|
298
|
-
];
|
|
299
|
-
exports.policyCategories = [
|
|
300
660
|
{
|
|
301
|
-
id: "
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
bulletBg: "bg-blue-700",
|
|
309
|
-
description: "School charter, definitions, and foundational rules",
|
|
310
|
-
sections: [
|
|
311
|
-
{
|
|
312
|
-
id: "preamble",
|
|
313
|
-
title: "Preamble",
|
|
314
|
-
points: [
|
|
315
|
-
{
|
|
316
|
-
text: "These rules apply to all students enrolled at LGGS, including any future branch.",
|
|
317
|
-
},
|
|
318
|
-
{
|
|
319
|
-
text: "Management reserves the right to modify, cancel, or amend any rules at any time.",
|
|
320
|
-
},
|
|
321
|
-
{
|
|
322
|
-
text: "The Managing Body is the final authority on interpretation of all rules, and its decisions are binding on all students.",
|
|
323
|
-
},
|
|
324
|
-
{
|
|
325
|
-
text: "All rules should be read in conjunction with existing and future rules applicable to the school.",
|
|
326
|
-
},
|
|
327
|
-
],
|
|
328
|
-
},
|
|
329
|
-
{
|
|
330
|
-
id: "definitions",
|
|
331
|
-
title: "Definitions",
|
|
332
|
-
points: [
|
|
333
|
-
{
|
|
334
|
-
text: '"The School" means Lahore Garrison Grammar School or any of its branches.',
|
|
335
|
-
},
|
|
336
|
-
{
|
|
337
|
-
text: '"Management" means the managing body comprising duly constituted members.',
|
|
338
|
-
},
|
|
339
|
-
{
|
|
340
|
-
text: '"Competent Authority" means the Principal, Administrator, or any officer delegated relevant powers.',
|
|
341
|
-
},
|
|
342
|
-
{
|
|
343
|
-
text: '"Regular Student" means a student enrolled until completion of secondary-level education (Matriculation).',
|
|
344
|
-
},
|
|
345
|
-
],
|
|
346
|
-
},
|
|
347
|
-
],
|
|
661
|
+
id: "4",
|
|
662
|
+
quote: "The extracurricular activities at LGGS are outstanding. My children participate in the Sports Day, Arts Exhibition, and cultural events every year. Watching them perform and compete with such confidence fills my heart with pride.",
|
|
663
|
+
name: "Nadia Iqbal",
|
|
664
|
+
role: "Parent of Two LGGS Students",
|
|
665
|
+
initials: "NI",
|
|
666
|
+
gradientFrom: "from-rose-600",
|
|
667
|
+
gradientTo: "to-pink-800",
|
|
348
668
|
},
|
|
349
669
|
{
|
|
350
|
-
id: "
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
670
|
+
id: "5",
|
|
671
|
+
quote: "LGGS prepared me so thoroughly for my board exams that I achieved A-grade results in all subjects. The teachers go above and beyond during examination season. I truly felt the school cared about my success as much as I did.",
|
|
672
|
+
name: "Sara Tariq",
|
|
673
|
+
role: "Former Student, Matriculation Batch 2023",
|
|
674
|
+
initials: "ST",
|
|
675
|
+
gradientFrom: "from-amber-600",
|
|
676
|
+
gradientTo: "to-orange-700",
|
|
677
|
+
},
|
|
678
|
+
{
|
|
679
|
+
id: "6",
|
|
680
|
+
quote: "What sets LGGS apart is its commitment to holistic development. My son didn't just improve academically — he became a better communicator, a leader, and a responsible young person. That is what great education looks like.",
|
|
681
|
+
name: "Dr. Usman Shah",
|
|
682
|
+
role: "Parent, Grade 10 Student",
|
|
683
|
+
initials: "US",
|
|
684
|
+
gradientFrom: "from-teal-600",
|
|
685
|
+
gradientTo: "to-teal-800",
|
|
686
|
+
},
|
|
687
|
+
];
|
|
688
|
+
exports.testimonialData = {
|
|
689
|
+
badge: "Testimonials",
|
|
690
|
+
heading: "Trusted by",
|
|
691
|
+
headingHighlight: "Families Across Lahore",
|
|
692
|
+
lead: "Don't just take our word for it — hear from the parents and alumni who have experienced the LGGS difference firsthand.",
|
|
693
|
+
items: exports.testimonials,
|
|
694
|
+
};
|
|
695
|
+
exports.whyUsFeatures = [
|
|
696
|
+
{
|
|
697
|
+
icon: "award",
|
|
698
|
+
title: "34+ Years of Proven Excellence",
|
|
699
|
+
description: "Since 1990, LGGS has consistently delivered academic results that parents and students trust. Our history of excellence is not just our past — it is our promise to you.",
|
|
700
|
+
color: "text-yellow-600",
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
icon: "shield",
|
|
704
|
+
title: "Safe, Separate Campuses",
|
|
705
|
+
description: "Our dedicated campuses for boys and girls are designed to create focused, comfortable learning environments where every student feels secure and valued.",
|
|
706
|
+
color: "text-blue-600",
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
icon: "book-open",
|
|
710
|
+
title: "BISE Affiliated Academics",
|
|
711
|
+
description: "Officially affiliated with the Board of Intermediate & Secondary Education, Lahore, ensuring your child receives standardized, recognized, and high-quality education.",
|
|
712
|
+
color: "text-green-600",
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
icon: "users",
|
|
716
|
+
title: "Dedicated, Caring Faculty",
|
|
717
|
+
description: "Our experienced educators go beyond teaching — they mentor, inspire, and personally invest in each child's growth, ensuring no student is left behind or overlooked.",
|
|
718
|
+
color: "text-purple-600",
|
|
719
|
+
},
|
|
720
|
+
{
|
|
721
|
+
icon: "heart",
|
|
722
|
+
title: "Holistic Child Development",
|
|
723
|
+
description: "We nurture the whole child — academic ability, emotional intelligence, social confidence, and moral character — because true success is about much more than grades.",
|
|
724
|
+
color: "text-red-600",
|
|
725
|
+
},
|
|
726
|
+
{
|
|
727
|
+
icon: "globe",
|
|
728
|
+
title: "English Medium Excellence",
|
|
729
|
+
description: "Our English-medium instruction opens global doors, giving your child the communication skills and international perspective required in today's connected world.",
|
|
730
|
+
color: "text-teal-600",
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
icon: "star",
|
|
734
|
+
title: "Vibrant Events & Activities",
|
|
735
|
+
description: "From sporting competitions and science exhibitions to creative writing contests and cultural celebrations — LGGS life is rich, dynamic, and deeply memorable.",
|
|
736
|
+
color: "text-orange-600",
|
|
737
|
+
},
|
|
738
|
+
{
|
|
739
|
+
icon: "zap",
|
|
740
|
+
title: "Consistent Improvement Culture",
|
|
741
|
+
description: "Year after year, results improve. Our commitment to modernizing the curriculum, upgrading facilities, and developing our faculty means your child always gets better.",
|
|
742
|
+
color: "text-indigo-600",
|
|
743
|
+
},
|
|
744
|
+
];
|
|
745
|
+
exports.highlightBadges = [
|
|
746
|
+
"34+ Years of Service",
|
|
747
|
+
"Registered with Directorate of Education Punjab",
|
|
748
|
+
"BISE Lahore Affiliated",
|
|
749
|
+
"Boys & Girls Campuses",
|
|
750
|
+
"English Medium School",
|
|
751
|
+
];
|
|
752
|
+
exports.whysUsData = {
|
|
753
|
+
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
|
+
features: exports.whyUsFeatures,
|
|
758
|
+
highlights: exports.highlightBadges,
|
|
759
|
+
};
|
|
760
|
+
exports.uniformData = [
|
|
761
|
+
{
|
|
762
|
+
season: "Summer",
|
|
763
|
+
variants: [
|
|
764
|
+
{
|
|
765
|
+
gender: "Boys",
|
|
766
|
+
classes: "Class I – V",
|
|
767
|
+
items: [
|
|
768
|
+
"White half-sleeves shirt with grey school insignia on pocket",
|
|
769
|
+
"Grey tropical shorts / pants",
|
|
770
|
+
"Black shoes",
|
|
771
|
+
"Grey socks",
|
|
772
|
+
],
|
|
773
|
+
},
|
|
774
|
+
{
|
|
775
|
+
gender: "Girls",
|
|
776
|
+
classes: "Class I – V",
|
|
777
|
+
items: [
|
|
778
|
+
"Red half-sleeves frock with red school insignia",
|
|
779
|
+
"White tight / shalwar",
|
|
780
|
+
"Black shoes",
|
|
781
|
+
"White socks",
|
|
782
|
+
],
|
|
783
|
+
},
|
|
784
|
+
{
|
|
785
|
+
gender: "Boys",
|
|
786
|
+
classes: "Class VI onwards",
|
|
787
|
+
items: [
|
|
788
|
+
"White half-sleeves shirt with grey school insignia on pocket",
|
|
789
|
+
"Grey tropical pants",
|
|
790
|
+
"Grey socks",
|
|
791
|
+
"Black shoes (no metal buckle)",
|
|
792
|
+
"Black belt with school logo",
|
|
793
|
+
],
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
gender: "Girls",
|
|
797
|
+
classes: "Class VI onwards",
|
|
798
|
+
items: [
|
|
799
|
+
"Red full-sleeves kameez with collar and red logo",
|
|
800
|
+
"Red sash",
|
|
801
|
+
"White socks",
|
|
802
|
+
"Black shoes",
|
|
803
|
+
"For hijab: red scarf without lace",
|
|
804
|
+
],
|
|
805
|
+
},
|
|
806
|
+
],
|
|
807
|
+
},
|
|
808
|
+
{
|
|
809
|
+
season: "Winter",
|
|
810
|
+
variants: [
|
|
811
|
+
{
|
|
812
|
+
gender: "Boys",
|
|
813
|
+
classes: "Class I – V",
|
|
814
|
+
items: [
|
|
815
|
+
"White full-sleeves shirt with grey school insignia",
|
|
816
|
+
"Grey steel colour pocket trousers",
|
|
817
|
+
"Grey sleeveless sweater",
|
|
818
|
+
"Navy blue blazer with badge pocket",
|
|
819
|
+
"Grey socks",
|
|
820
|
+
"Black shoes without laces (no joggers, boots, or metal buckle)",
|
|
821
|
+
],
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
gender: "Girls",
|
|
825
|
+
classes: "Class I – V",
|
|
826
|
+
items: [
|
|
827
|
+
"Red full-sleeves frock with red school insignia",
|
|
828
|
+
"White tight / shalwar",
|
|
829
|
+
"Navy blue blazer with badge pocket",
|
|
830
|
+
"White socks",
|
|
831
|
+
"Black shoes",
|
|
832
|
+
],
|
|
833
|
+
},
|
|
834
|
+
{
|
|
835
|
+
gender: "Boys",
|
|
836
|
+
classes: "Class VI onwards",
|
|
837
|
+
items: [
|
|
838
|
+
"White full-sleeves shirt with grey school insignia on pocket",
|
|
839
|
+
"Grey pants with pockets",
|
|
840
|
+
"Grey sleeveless sweater",
|
|
841
|
+
"Navy blue blazer with badge pocket",
|
|
842
|
+
"Grey socks",
|
|
843
|
+
"Black shoes (without metal buckle)",
|
|
844
|
+
"Black belt with school logo",
|
|
845
|
+
],
|
|
846
|
+
},
|
|
847
|
+
{
|
|
848
|
+
gender: "Girls",
|
|
849
|
+
classes: "Class VI onwards",
|
|
850
|
+
items: [
|
|
851
|
+
"Red full-sleeves kameez with collar and red logo",
|
|
852
|
+
"Red sash",
|
|
853
|
+
"Red sleeveless sweater",
|
|
854
|
+
"Navy blue blazer with badge pocket",
|
|
855
|
+
"White socks",
|
|
856
|
+
"Black shoes",
|
|
857
|
+
"For hijab: red scarf without lace",
|
|
858
|
+
],
|
|
859
|
+
},
|
|
860
|
+
],
|
|
861
|
+
},
|
|
862
|
+
];
|
|
863
|
+
exports.policyCategories = [
|
|
864
|
+
{
|
|
865
|
+
id: "overview",
|
|
866
|
+
label: "Overview",
|
|
867
|
+
icon: "book-open",
|
|
868
|
+
colorClass: "text-blue-700",
|
|
869
|
+
bgClass: "bg-blue-50",
|
|
870
|
+
borderClass: "border-blue-200",
|
|
871
|
+
badgeClass: "bg-blue-100 text-blue-700",
|
|
872
|
+
bulletBg: "bg-blue-700",
|
|
873
|
+
description: "School charter, definitions, and foundational rules",
|
|
874
|
+
sections: [
|
|
875
|
+
{
|
|
876
|
+
id: "preamble",
|
|
877
|
+
title: "Preamble",
|
|
878
|
+
points: [
|
|
879
|
+
{
|
|
880
|
+
text: "These rules apply to all students enrolled at LGGS, including any future branch.",
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
text: "Management reserves the right to modify, cancel, or amend any rules at any time.",
|
|
884
|
+
},
|
|
885
|
+
{
|
|
886
|
+
text: "The Managing Body is the final authority on interpretation of all rules, and its decisions are binding on all students.",
|
|
887
|
+
},
|
|
888
|
+
{
|
|
889
|
+
text: "All rules should be read in conjunction with existing and future rules applicable to the school.",
|
|
890
|
+
},
|
|
891
|
+
],
|
|
892
|
+
},
|
|
893
|
+
{
|
|
894
|
+
id: "definitions",
|
|
895
|
+
title: "Definitions",
|
|
896
|
+
points: [
|
|
897
|
+
{
|
|
898
|
+
text: '"The School" means Lahore Garrison Grammar School or any of its branches.',
|
|
899
|
+
},
|
|
900
|
+
{
|
|
901
|
+
text: '"Management" means the managing body comprising duly constituted members.',
|
|
902
|
+
},
|
|
903
|
+
{
|
|
904
|
+
text: '"Competent Authority" means the Principal, Administrator, or any officer delegated relevant powers.',
|
|
905
|
+
},
|
|
906
|
+
{
|
|
907
|
+
text: '"Regular Student" means a student enrolled until completion of secondary-level education (Matriculation).',
|
|
908
|
+
},
|
|
909
|
+
],
|
|
910
|
+
},
|
|
911
|
+
],
|
|
912
|
+
},
|
|
913
|
+
{
|
|
914
|
+
id: "admissions",
|
|
915
|
+
label: "Admissions",
|
|
916
|
+
icon: "user-plus",
|
|
917
|
+
colorClass: "text-emerald-700",
|
|
918
|
+
bgClass: "bg-emerald-50",
|
|
919
|
+
borderClass: "border-emerald-200",
|
|
920
|
+
badgeClass: "bg-emerald-100 text-emerald-700",
|
|
921
|
+
bulletBg: "bg-emerald-700",
|
|
922
|
+
description: "Admission process, eligibility, and transfer rules",
|
|
923
|
+
sections: [
|
|
924
|
+
{
|
|
925
|
+
id: "admission-policy",
|
|
926
|
+
title: "Admission Policy",
|
|
363
927
|
points: [
|
|
364
928
|
{ text: "Academic session commences in March each year." },
|
|
365
929
|
{
|
|
@@ -688,353 +1252,3 @@ exports.policyHighlights = [
|
|
|
688
1252
|
note: "Continuous without leave",
|
|
689
1253
|
},
|
|
690
1254
|
];
|
|
691
|
-
exports.programs = [
|
|
692
|
-
{
|
|
693
|
-
icon: lucide_react_1.Baby,
|
|
694
|
-
title: "Playgroup & Nursery",
|
|
695
|
-
ages: "Ages 2–4",
|
|
696
|
-
color: "bg-pink-500",
|
|
697
|
-
lightColor: "bg-pink-50",
|
|
698
|
-
textColor: "text-pink-700",
|
|
699
|
-
borderColor: "border-pink-200",
|
|
700
|
-
description: "Your child's first school experience is precious. Our Playgroup and Nursery programs provide a wonderfully gentle introduction to learning — through play, creative exploration, and loving interaction, laying the foundation for a lifelong love of learning.",
|
|
701
|
-
highlights: [
|
|
702
|
-
"Play-based discovery learning",
|
|
703
|
-
"Social & emotional development",
|
|
704
|
-
"Language & communication",
|
|
705
|
-
"Creative arts & crafts",
|
|
706
|
-
"Safe, stimulating environment",
|
|
707
|
-
],
|
|
708
|
-
},
|
|
709
|
-
{
|
|
710
|
-
icon: lucide_react_1.BookOpen,
|
|
711
|
-
title: "Primary Education",
|
|
712
|
-
ages: "Ages 5–10",
|
|
713
|
-
color: "bg-blue-500",
|
|
714
|
-
lightColor: "bg-blue-50",
|
|
715
|
-
textColor: "text-blue-700",
|
|
716
|
-
borderColor: "border-blue-200",
|
|
717
|
-
description: "Strong foundations are everything. Our Primary section builds essential skills in English, Urdu, Mathematics, Science, and Social Studies with a curriculum that balances academic rigour with creative exploration — sparking curiosity in every young mind.",
|
|
718
|
-
highlights: [
|
|
719
|
-
"English & Urdu medium education",
|
|
720
|
-
"Core subject mastery",
|
|
721
|
-
"Science experiments & discovery",
|
|
722
|
-
"Arts, crafts & physical education",
|
|
723
|
-
"Character & values formation",
|
|
724
|
-
],
|
|
725
|
-
},
|
|
726
|
-
{
|
|
727
|
-
icon: lucide_react_1.User,
|
|
728
|
-
title: "Middle School",
|
|
729
|
-
ages: "Ages 11–14",
|
|
730
|
-
color: "bg-green-500",
|
|
731
|
-
lightColor: "bg-green-50",
|
|
732
|
-
textColor: "text-green-700",
|
|
733
|
-
borderColor: "border-green-200",
|
|
734
|
-
description: "The middle years are a time of discovery, growth, and building identity. Our Middle School program challenges students academically while offering the pastoral care and mentorship they need to navigate this transformative stage with confidence.",
|
|
735
|
-
highlights: [
|
|
736
|
-
"Advanced subject curriculum",
|
|
737
|
-
"Critical thinking development",
|
|
738
|
-
"Leadership opportunities",
|
|
739
|
-
"Extracurricular activities",
|
|
740
|
-
"Dedicated pastoral support",
|
|
741
|
-
],
|
|
742
|
-
},
|
|
743
|
-
{
|
|
744
|
-
icon: lucide_react_1.GraduationCap,
|
|
745
|
-
title: "Secondary & Matriculation",
|
|
746
|
-
ages: "Ages 15–16",
|
|
747
|
-
color: "bg-purple-500",
|
|
748
|
-
lightColor: "bg-purple-50",
|
|
749
|
-
textColor: "text-purple-700",
|
|
750
|
-
borderColor: "border-purple-200",
|
|
751
|
-
description: "The culmination of the LGGS journey — our Secondary program prepares students for BISE Lahore board examinations with rigorous academics, personalized guidance, and the skills needed to unlock their chosen path in life.",
|
|
752
|
-
highlights: [
|
|
753
|
-
"BISE Lahore board preparation",
|
|
754
|
-
"Science & Arts streams",
|
|
755
|
-
"Career counselling & guidance",
|
|
756
|
-
"University readiness programs",
|
|
757
|
-
"Board exam success strategies",
|
|
758
|
-
],
|
|
759
|
-
},
|
|
760
|
-
];
|
|
761
|
-
exports.testimonials = [
|
|
762
|
-
{
|
|
763
|
-
id: "1",
|
|
764
|
-
quote: "LGGS has been the best decision we made for our son. The teachers here are not just educators — they are mentors who genuinely care about each child. His confidence has grown tremendously and his results speak for themselves.",
|
|
765
|
-
name: "Ahmed Raza",
|
|
766
|
-
role: "Parent, Grade 8 Student",
|
|
767
|
-
initials: "AR",
|
|
768
|
-
gradientFrom: "from-blue-600",
|
|
769
|
-
gradientTo: "to-blue-800",
|
|
770
|
-
},
|
|
771
|
-
{
|
|
772
|
-
id: "2",
|
|
773
|
-
quote: "When I moved to Lahore, I was worried about finding a school that would make my daughter feel welcomed and safe. LGGS exceeded every expectation. The separate campus for girls is such a thoughtful decision — she thrives there.",
|
|
774
|
-
name: "Fatima Malik",
|
|
775
|
-
role: "Parent, Grade 6 Student",
|
|
776
|
-
initials: "FM",
|
|
777
|
-
gradientFrom: "from-purple-600",
|
|
778
|
-
gradientTo: "to-purple-800",
|
|
779
|
-
},
|
|
780
|
-
{
|
|
781
|
-
id: "3",
|
|
782
|
-
quote: "I completed my Matriculation from LGGS in 2022 and it shaped everything I am today. The discipline, the values, and the incredible faculty gave me not just knowledge but purpose. I am so proud to call myself an LGGS graduate.",
|
|
783
|
-
name: "Bilal Hussain",
|
|
784
|
-
role: "Former Student, Class of 2022",
|
|
785
|
-
initials: "BH",
|
|
786
|
-
gradientFrom: "from-green-600",
|
|
787
|
-
gradientTo: "to-emerald-800",
|
|
788
|
-
},
|
|
789
|
-
{
|
|
790
|
-
id: "4",
|
|
791
|
-
quote: "The extracurricular activities at LGGS are outstanding. My children participate in the Sports Day, Arts Exhibition, and cultural events every year. Watching them perform and compete with such confidence fills my heart with pride.",
|
|
792
|
-
name: "Nadia Iqbal",
|
|
793
|
-
role: "Parent of Two LGGS Students",
|
|
794
|
-
initials: "NI",
|
|
795
|
-
gradientFrom: "from-rose-600",
|
|
796
|
-
gradientTo: "to-pink-800",
|
|
797
|
-
},
|
|
798
|
-
{
|
|
799
|
-
id: "5",
|
|
800
|
-
quote: "LGGS prepared me so thoroughly for my board exams that I achieved A-grade results in all subjects. The teachers go above and beyond during examination season. I truly felt the school cared about my success as much as I did.",
|
|
801
|
-
name: "Sara Tariq",
|
|
802
|
-
role: "Former Student, Matriculation Batch 2023",
|
|
803
|
-
initials: "ST",
|
|
804
|
-
gradientFrom: "from-amber-600",
|
|
805
|
-
gradientTo: "to-orange-700",
|
|
806
|
-
},
|
|
807
|
-
{
|
|
808
|
-
id: "6",
|
|
809
|
-
quote: "What sets LGGS apart is its commitment to holistic development. My son didn't just improve academically — became a better communicator, a leader, and a responsible young person. That is what great education looks like.",
|
|
810
|
-
name: "Dr. Usman Shah",
|
|
811
|
-
role: "Parent, Grade 10 Student",
|
|
812
|
-
initials: "US",
|
|
813
|
-
gradientFrom: "from-teal-600",
|
|
814
|
-
gradientTo: "to-teal-800",
|
|
815
|
-
},
|
|
816
|
-
];
|
|
817
|
-
exports.uniformData = [
|
|
818
|
-
{
|
|
819
|
-
season: "Summer",
|
|
820
|
-
variants: [
|
|
821
|
-
{
|
|
822
|
-
gender: "Boys",
|
|
823
|
-
classes: "Class I – V",
|
|
824
|
-
items: [
|
|
825
|
-
"White half-sleeves shirt with grey school insignia on pocket",
|
|
826
|
-
"Grey tropical shorts / pants",
|
|
827
|
-
"Black shoes",
|
|
828
|
-
"Grey socks",
|
|
829
|
-
],
|
|
830
|
-
},
|
|
831
|
-
{
|
|
832
|
-
gender: "Girls",
|
|
833
|
-
classes: "Class I – V",
|
|
834
|
-
items: [
|
|
835
|
-
"Red half-sleeves frock with red school insignia",
|
|
836
|
-
"White tight / shalwar",
|
|
837
|
-
"Black shoes",
|
|
838
|
-
"White socks",
|
|
839
|
-
],
|
|
840
|
-
},
|
|
841
|
-
{
|
|
842
|
-
gender: "Boys",
|
|
843
|
-
classes: "Class VI onwards",
|
|
844
|
-
items: [
|
|
845
|
-
"White half-sleeves shirt with grey school insignia on pocket",
|
|
846
|
-
"Grey tropical pants",
|
|
847
|
-
"Grey socks",
|
|
848
|
-
"Black shoes (no metal buckle)",
|
|
849
|
-
"Black belt with school logo",
|
|
850
|
-
],
|
|
851
|
-
},
|
|
852
|
-
{
|
|
853
|
-
gender: "Girls",
|
|
854
|
-
classes: "Class VI onwards",
|
|
855
|
-
items: [
|
|
856
|
-
"Red full-sleeves kameez with collar and red logo",
|
|
857
|
-
"Red sash",
|
|
858
|
-
"White socks",
|
|
859
|
-
"Black shoes",
|
|
860
|
-
"For hijab: red scarf without lace",
|
|
861
|
-
],
|
|
862
|
-
},
|
|
863
|
-
],
|
|
864
|
-
},
|
|
865
|
-
{
|
|
866
|
-
season: "Winter",
|
|
867
|
-
variants: [
|
|
868
|
-
{
|
|
869
|
-
gender: "Boys",
|
|
870
|
-
classes: "Class I – V",
|
|
871
|
-
items: [
|
|
872
|
-
"White full-sleeves shirt with grey school insignia",
|
|
873
|
-
"Grey steel colour pocket trousers",
|
|
874
|
-
"Grey sleeveless sweater",
|
|
875
|
-
"Navy blue blazer with badge pocket",
|
|
876
|
-
"Grey socks",
|
|
877
|
-
"Black shoes without laces (no joggers, boots, or metal buckle)",
|
|
878
|
-
],
|
|
879
|
-
},
|
|
880
|
-
{
|
|
881
|
-
gender: "Girls",
|
|
882
|
-
classes: "Class I – V",
|
|
883
|
-
items: [
|
|
884
|
-
"Red full-sleeves frock with red school insignia",
|
|
885
|
-
"White tight / shalwar",
|
|
886
|
-
"Navy blue blazer with badge pocket",
|
|
887
|
-
"White socks",
|
|
888
|
-
"Black shoes",
|
|
889
|
-
],
|
|
890
|
-
},
|
|
891
|
-
{
|
|
892
|
-
gender: "Boys",
|
|
893
|
-
classes: "Class VI onwards",
|
|
894
|
-
items: [
|
|
895
|
-
"White full-sleeves shirt with grey school insignia on pocket",
|
|
896
|
-
"Grey pants with pockets",
|
|
897
|
-
"Grey sleeveless sweater",
|
|
898
|
-
"Navy blue blazer with badge pocket",
|
|
899
|
-
"Grey socks",
|
|
900
|
-
"Black shoes (without metal buckle)",
|
|
901
|
-
"Black belt with school logo",
|
|
902
|
-
],
|
|
903
|
-
},
|
|
904
|
-
{
|
|
905
|
-
gender: "Girls",
|
|
906
|
-
classes: "Class VI onwards",
|
|
907
|
-
items: [
|
|
908
|
-
"Red full-sleeves kameez with collar and red logo",
|
|
909
|
-
"Red sash",
|
|
910
|
-
"Red sleeveless sweater",
|
|
911
|
-
"Navy blue blazer with badge pocket",
|
|
912
|
-
"White socks",
|
|
913
|
-
"Black shoes",
|
|
914
|
-
"For hijab: red scarf without lace",
|
|
915
|
-
],
|
|
916
|
-
},
|
|
917
|
-
],
|
|
918
|
-
},
|
|
919
|
-
];
|
|
920
|
-
exports.upcomingEvents = [
|
|
921
|
-
{
|
|
922
|
-
date: "15",
|
|
923
|
-
month: "Mar",
|
|
924
|
-
title: "New Academic Year Orientation",
|
|
925
|
-
time: "9:00 AM",
|
|
926
|
-
type: "Academic",
|
|
927
|
-
},
|
|
928
|
-
{
|
|
929
|
-
date: "22",
|
|
930
|
-
month: "Mar",
|
|
931
|
-
title: "Parent-Teacher Meeting — Primary",
|
|
932
|
-
time: "2:00 PM",
|
|
933
|
-
type: "Parents",
|
|
934
|
-
},
|
|
935
|
-
{
|
|
936
|
-
date: "05",
|
|
937
|
-
month: "Apr",
|
|
938
|
-
title: "Muqabla Husan-e-Qirat & Naat Khwani",
|
|
939
|
-
time: "10:00 AM",
|
|
940
|
-
type: "Cultural",
|
|
941
|
-
},
|
|
942
|
-
{
|
|
943
|
-
date: "18",
|
|
944
|
-
month: "Apr",
|
|
945
|
-
title: "Drawing & Colouring Competition",
|
|
946
|
-
time: "9:30 AM",
|
|
947
|
-
type: "Creative",
|
|
948
|
-
},
|
|
949
|
-
{
|
|
950
|
-
date: "02",
|
|
951
|
-
month: "May",
|
|
952
|
-
title: "Annual Story Telling Competition",
|
|
953
|
-
time: "11:00 AM",
|
|
954
|
-
type: "Academic",
|
|
955
|
-
},
|
|
956
|
-
];
|
|
957
|
-
exports.whyUsFeatures = [
|
|
958
|
-
{
|
|
959
|
-
icon: lucide_react_1.Award,
|
|
960
|
-
title: "34+ Years of Proven Excellence",
|
|
961
|
-
description: "Since 1990, LGGS has consistently delivered academic results that parents and students trust. Our history of excellence is not just our past — it is our promise to you.",
|
|
962
|
-
color: "text-yellow-600",
|
|
963
|
-
},
|
|
964
|
-
{
|
|
965
|
-
icon: lucide_react_1.Shield,
|
|
966
|
-
title: "Safe, Separate Campuses",
|
|
967
|
-
description: "Our dedicated campuses for boys and girls are designed to create focused, comfortable learning environments where every student feels secure and valued.",
|
|
968
|
-
color: "text-blue-600",
|
|
969
|
-
},
|
|
970
|
-
{
|
|
971
|
-
icon: lucide_react_1.BookOpen,
|
|
972
|
-
title: "BISE Affiliated Academics",
|
|
973
|
-
description: "Officially affiliated with the Board of Intermediate & Secondary Education, Lahore, ensuring your child receives standardized, recognized, and high-quality education.",
|
|
974
|
-
color: "text-green-600",
|
|
975
|
-
},
|
|
976
|
-
{
|
|
977
|
-
icon: lucide_react_1.Users,
|
|
978
|
-
title: "Dedicated, Caring Faculty",
|
|
979
|
-
description: "Our experienced educators go beyond teaching — they mentor, inspire, and personally invest in each child's growth, ensuring no student is left behind or overlooked.",
|
|
980
|
-
color: "text-purple-600",
|
|
981
|
-
},
|
|
982
|
-
{
|
|
983
|
-
icon: lucide_react_1.Heart,
|
|
984
|
-
title: "Holistic Child Development",
|
|
985
|
-
description: "We nurture the whole child — academic ability, emotional intelligence, social confidence, and moral character — because true success is about much more than grades.",
|
|
986
|
-
color: "text-red-600",
|
|
987
|
-
},
|
|
988
|
-
{
|
|
989
|
-
icon: lucide_react_1.Globe,
|
|
990
|
-
title: "English Medium Excellence",
|
|
991
|
-
description: "Our English-medium instruction opens global doors, giving your child the communication skills and international perspective required in today's connected world.",
|
|
992
|
-
color: "text-teal-600",
|
|
993
|
-
},
|
|
994
|
-
{
|
|
995
|
-
icon: lucide_react_1.Star,
|
|
996
|
-
title: "Vibrant Events & Activities",
|
|
997
|
-
description: "From sporting competitions and science exhibitions to creative writing contests and cultural celebrations — LGGS life is rich, dynamic, and deeply memorable.",
|
|
998
|
-
color: "text-orange-600",
|
|
999
|
-
},
|
|
1000
|
-
{
|
|
1001
|
-
icon: lucide_react_1.Zap,
|
|
1002
|
-
title: "Consistent Improvement Culture",
|
|
1003
|
-
description: "Year after year, results improve. Our commitment to modernizing the curriculum, upgrading facilities, and developing our faculty means your child always gets better.",
|
|
1004
|
-
color: "text-indigo-600",
|
|
1005
|
-
},
|
|
1006
|
-
];
|
|
1007
|
-
exports.aboutHighlights = [
|
|
1008
|
-
{
|
|
1009
|
-
icon: lucide_react_1.Star,
|
|
1010
|
-
title: "Academic Excellence",
|
|
1011
|
-
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.",
|
|
1012
|
-
color: "bg-yellow-50",
|
|
1013
|
-
iconColor: "text-yellow-600",
|
|
1014
|
-
borderColor: "border-yellow-100",
|
|
1015
|
-
},
|
|
1016
|
-
{
|
|
1017
|
-
icon: lucide_react_1.Heart,
|
|
1018
|
-
title: "Child-Centered Philosophy",
|
|
1019
|
-
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.",
|
|
1020
|
-
color: "bg-rose-50",
|
|
1021
|
-
iconColor: "text-rose-600",
|
|
1022
|
-
borderColor: "border-rose-100",
|
|
1023
|
-
},
|
|
1024
|
-
{
|
|
1025
|
-
icon: lucide_react_1.Target,
|
|
1026
|
-
title: "Recognized Standards",
|
|
1027
|
-
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.",
|
|
1028
|
-
color: "bg-blue-50",
|
|
1029
|
-
iconColor: "text-blue-600",
|
|
1030
|
-
borderColor: "border-blue-100",
|
|
1031
|
-
},
|
|
1032
|
-
{
|
|
1033
|
-
icon: lucide_react_1.Eye,
|
|
1034
|
-
title: "Safe, Focused Environments",
|
|
1035
|
-
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.",
|
|
1036
|
-
color: "bg-green-50",
|
|
1037
|
-
iconColor: "text-green-600",
|
|
1038
|
-
borderColor: "border-green-100",
|
|
1039
|
-
},
|
|
1040
|
-
];
|