-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
836 lines (824 loc) · 39.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
<!DOCTYPE html>
<html lang="en" class="">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Teacher Plus</title>
<meta
name="description"
content="Simplify lesson planning with our powerful tools and create engaging
lesson plans with ease. Unlock your creativity and streamline your
teaching process. Join our community of educators today!"
/>
<link href="output.css" rel="stylesheet" />
<script>
if (
localStorage.getItem("color-theme") === "dark" ||
(!("color-theme" in localStorage) &&
window.matchMedia("(prefers-color-scheme: dark)").matches)
) {
document.documentElement.classList.add("dark");
window.addEventListener("load", () => {
const headerLogo = document.getElementById("logo-image");
const footerLogo = document.getElementById("footer-logo");
headerLogo.src = "logo-dark.svg";
footerLogo.src = "logo-dark.svg";
});
} else {
document.documentElement.classList.remove("dark");
}
</script>
</head>
<body class="light font-p">
<header>
<nav
class="fixed left-0 top-0 z-20 w-full border-b border-gray-200 bg-white px-4 py-2.5 dark:border-gray-600 dark:bg-gray-800 lg:px-6"
>
<div
class="mx-auto flex max-w-screen-xl flex-wrap items-center justify-between"
>
<a href="#" class="flex items-center">
<img
id="logo-image"
src="logo.png"
class="mr-3 h-6 sm:h-9"
alt="Teacher Plus"
/>
<span
class="self-center whitespace-nowrap text-xl font-semibold dark:text-white"
></span>
</a>
<div class="flex items-center lg:order-2">
<button id="theme-toggle" type="button" class="text-gray-500 dark:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-700 focus:outline-none focus:ring-4 focus:ring-gray-200 dark:focus:ring-gray-700 rounded-lg text-sm p-2.5">
<svg id="theme-toggle-dark-icon" class="hidden w-5 h-5" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M17.293 13.293A8 8 0 016.707 2.707a8.001 8.001 0 1010.586 10.586z"></path></svg>
<svg id="theme-toggle-light-icon" class="hidden w-5 h-5" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M10 2a1 1 0 011 1v1a1 1 0 11-2 0V3a1 1 0 011-1zm4 8a4 4 0 11-8 0 4 4 0 018 0zm-.464 4.95l.707.707a1 1 0 001.414-1.414l-.707-.707a1 1 0 00-1.414 1.414zm2.12-10.607a1 1 0 010 1.414l-.706.707a1 1 0 11-1.414-1.414l.707-.707a1 1 0 011.414 0zM17 11a1 1 0 100-2h-1a1 1 0 100 2h1zm-7 4a1 1 0 011 1v1a1 1 0 11-2 0v-1a1 1 0 011-1zM5.05 6.464A1 1 0 106.465 5.05l-.708-.707a1 1 0 00-1.414 1.414l.707.707zm1.414 8.486l-.707.707a1 1 0 01-1.414-1.414l.707-.707a1 1 0 011.414 1.414zM4 11a1 1 0 100-2H3a1 1 0 000 2h1z" fill-rule="evenodd" clip-rule="evenodd"></path></svg>
</button>
<a
href="#"
class="mr-2 rounded-lg px-5 py-2.5 text-sm font-medium text-gray-800 hover:bg-gray-50 focus:outline-none focus:ring-4 focus:ring-gray-300 dark:text-white dark:hover:bg-gray-700 dark:focus:ring-gray-800"
>Log in</a
>
<!-- <a href="#" class="text-white bg-primary-700 hover:bg-primary-800
focus:ring-4 focus:ring-primary-300 font-medium rounded-lg text-sm
px-5 py-2.5 mr-2 dark:bg-primary-600 dark:hover:bg-primary-700
focus:outline-none dark:focus:ring-primary-800">Get started</a> -->
<button
data-collapse-toggle="mobile-menu-2"
type="button"
class="ml-1 inline-flex items-center rounded-lg p-2 text-sm text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-gray-200 dark:text-gray-400 dark:hover:bg-gray-700 dark:focus:ring-gray-600 lg:hidden"
aria-controls="mobile-menu-2"
aria-expanded="false"
>
<span class="sr-only">Open main menu</span>
<svg
class="h-6 w-6"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M3 5a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 10a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 15a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1z"
clip-rule="evenodd"
></path>
</svg>
<svg
class="hidden h-6 w-6"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z"
clip-rule="evenodd"
></path>
</svg>
</button>
</div>
<div
class="hidden w-full items-center justify-between lg:order-1 lg:flex lg:w-auto"
id="mobile-menu-2"
>
<ul
class="mt-4 flex flex-col font-medium lg:mt-0 lg:flex-row lg:space-x-8"
>
<li>
<a
href="/"
class="block rounded bg-primary-700 py-2 pl-3 pr-4 text-white dark:text-white lg:bg-transparent lg:p-0 lg:text-primary-700"
aria-current="page"
>Home</a
>
</li>
<li>
<a
href="#about"
class="block border-b border-gray-100 py-2 pl-3 pr-4 text-gray-700 hover:bg-gray-50 dark:border-gray-700 dark:text-gray-400 dark:hover:bg-gray-700 dark:hover:text-white lg:border-0 lg:p-0 lg:hover:bg-transparent lg:hover:text-primary-700 lg:dark:hover:bg-transparent lg:dark:hover:text-white"
>About</a
>
</li>
<li>
<a
href="#contact-section"
class="block border-b border-gray-100 py-2 pl-3 pr-4 text-gray-700 hover:bg-gray-50 dark:border-gray-700 dark:text-gray-400 dark:hover:bg-gray-700 dark:hover:text-white lg:border-0 lg:p-0 lg:hover:bg-transparent lg:hover:text-primary-700 lg:dark:hover:bg-transparent lg:dark:hover:text-white"
>Contact</a
>
</li>
</ul>
</div>
</div>
</nav>
</header>
<section class="mt-10 bg-white dark:bg-gray-900">
<div
class="mx-auto grid max-w-screen-xl px-4 py-8 lg:grid-cols-12 lg:gap-8 lg:py-16 xl:gap-0"
>
<div class="mr-auto place-self-center lg:col-span-7">
<h1
class="mb-4 max-w-2xl text-4xl font-extrabold leading-none dark:text-white md:text-5xl xl:text-6xl"
>
Empowering Educators with Interactive Lesson Planning Tools
</h1>
<p
class="mb-6 max-w-2xl font-light text-gray-500 dark:text-gray-400 md:text-lg lg:mb-8 lg:text-xl"
>
Simplify lesson planning with our powerful tools and create engaging
lesson plans with ease. Unlock your creativity and streamline your
teaching process. Join our community of educators today!
</p>
<a
href="#"
class="mr-3 inline-flex items-center justify-center rounded-lg bg-primary-700 px-5 py-3 text-center text-base font-medium text-white hover:bg-primary-800 focus:ring-4 focus:ring-primary-300 dark:focus:ring-primary-900"
>
Get started
<svg
class="-mr-1 ml-2 h-5 w-5"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M10.293 3.293a1 1 0
011.414 0l6 6a1 1 0 010 1.414l-6 6a1 1 0
01-1.414-1.414L14.586 11H3a1 1 0
110-2h11.586l-4.293-4.293a1 1 0 010-1.414z"
clip-rule="evenodd"
></path>
</svg>
</a>
<!-- <a href="#" class="inline-flex justify-center items-center py-3 px-5 text-base font-medium text-center text-gray-900 rounded-lg border border-gray-300 hover:bg-gray-100 focus:ring-4 focus:ring-gray-100 dark:text-white dark:border-gray-700 dark:hover:bg-gray-700 dark:focus:ring-gray-800">
Speak to Sales
</a> -->
</div>
<div class="hidden lg:col-span-5 lg:mt-0 lg:flex">
<img src="header.png" class="h-fit" alt="mockup" />
</div>
</div>
</section>
<section class="bg-gray-50 dark:bg-gray-800">
<div class="mx-auto max-w-screen-xl px-4 py-8 sm:py-16 lg:px-6">
<div class="mb-8 max-w-screen-md lg:mb-16">
<h2
class="mb-4 text-4xl font-extrabold text-gray-900 dark:text-white"
>
Designed for teachers to build Lesson Plan
</h2>
<p class="text-gray-500 dark:text-gray-400 sm:text-xl"></p>
</div>
<div
class="space-y-8 md:grid md:grid-cols-2 md:gap-12 md:space-y-0 lg:grid-cols-3"
>
<div>
<div
class="mb-4 flex h-10 w-10 items-center justify-center rounded-full bg-primary-100 dark:bg-primary-900 lg:h-12 lg:w-12"
>
<svg
class="h-5 w-5 text-primary-600 dark:text-primary-300 lg:h-6 lg:w-6"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M3 3a1 1 0 000 2v8a2
2 0 002 2h2.586l-1.293 1.293a1 1 0 101.414
1.414L10 15.414l2.293 2.293a1 1 0
001.414-1.414L12.414 15H15a2 2 0 002-2V5a1 1
0 100-2H3zm11.707 4.707a1 1 0
00-1.414-1.414L10 9.586 8.707 8.293a1 1 0
00-1.414 0l-2 2a1 1 0 101.414 1.414L8
10.414l1.293 1.293a1 1 0 001.414 0l4-4z"
clip-rule="evenodd"
></path>
</svg>
</div>
<h3 class="mb-2 text-xl font-bold dark:text-white">
5E Model Constructivist Approach
</h3>
<p class="text-gray-500 dark:text-gray-400">
follows a five-step process: Engage, Explore, Explain, Elaborate,
and Evaluate. It promotes hands-on learning and active student
engagement in the classroom.
</p>
</div>
<div>
<div
class="mb-4 flex h-10 w-10 items-center justify-center rounded-full bg-primary-100 dark:bg-primary-900 lg:h-12 lg:w-12"
>
<svg
class="h-5 w-5 text-primary-600 dark:text-primary-300 lg:h-6 lg:w-6"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M10.394 2.08a1 1 0 00-.788 0l-7 3a1 1 0
000 1.84L5.25 8.051a.999.999 0
01.356-.257l4-1.714a1 1 0 11.788 1.838L7.667
9.088l1.94.831a1 1 0 00.787 0l7-3a1 1 0
000-1.838l-7-3zM3.31 9.397L5
10.12v4.102a8.969 8.969 0 00-1.05-.174 1 1 0
01-.89-.89 11.115 11.115 0 01.25-3.762zM9.3
16.573A9.026 9.026 0 007
14.935v-3.957l1.818.78a3 3 0 002.364
0l5.508-2.361a11.026 11.026 0 01.25 3.762 1
1 0 01-.89.89 8.968 8.968 0 00-5.35 2.524 1
1 0 01-1.4 0zM6 18a1 1 0 001-1v-2.065a8.935
8.935 0 00-2-.712V17a1 1 0 001 1z"
></path>
</svg>
</div>
<h3 class="mb-2 text-xl font-bold dark:text-white">
Behaviorist Approach
</h3>
<p class="text-gray-500 dark:text-gray-400">
Focuses on observable behavior and reinforcement to shape and
modify actions, emphasizing external stimuli and responses.
</p>
</div>
<div>
<div
class="mb-4 flex h-10 w-10 items-center justify-center rounded-full bg-primary-100 dark:bg-primary-900 lg:h-12 lg:w-12"
>
<svg
class="h-5 w-5 text-primary-600 dark:text-primary-300 lg:h-6 lg:w-6"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M6 6V5a3 3 0
013-3h2a3 3 0 013 3v1h2a2 2 0 012
2v3.57A22.952 22.952 0 0110 13a22.95 22.95 0
01-8-1.43V8a2 2 0 012-2h2zm2-1a1 1 0
011-1h2a1 1 0 011 1v1H8V5zm1 5a1 1 0
011-1h.01a1 1 0 110 2H10a1 1 0 01-1-1z"
clip-rule="evenodd"
></path>
<path
d="M2
13.692V16a2 2 0 002 2h12a2 2 0
002-2v-2.308A24.974 24.974 0 0110 15c-2.796
0-5.487-.46-8-1.308z"
></path>
</svg>
</div>
<h3 class="mb-2 text-xl font-bold dark:text-white">
Experiential Learning Approach
</h3>
<p class="text-gray-500 dark:text-gray-400">
hands-on approach where students actively engage in real-world
experiences to acquire knowledge, develop skills, and gain deeper
understanding.
</p>
</div>
</div>
</div>
</section>
<section id="about" class="bg-white dark:bg-gray-900">
<div
class="mx-auto max-w-screen-xl items-center gap-16 px-4 py-8 lg:grid lg:grid-cols-2 lg:px-6 lg:py-16"
>
<div class="font-light text-gray-500 dark:text-gray-400 sm:text-lg">
<h2
class="mb-4 text-4xl font-extrabold text-gray-900 dark:text-white"
>
What is Teacher Plus
</h2>
<p class="mb-4">
Our tool revolutionizes the way teachers create lesson plans of
three different types. It provides a user-friendly interface and
comprehensive guidance, enabling educators to effortlessly build
engaging lessons. With customizable templates and prompts for each
lesson type, teachers can tailor their plans to specific objectives
and learning activities. The tool's time-saving features eliminate
the need to start from scratch, as pre-designed templates are
readily available. Collaboration is encouraged through the tool's
sharing capabilities, fostering a community of knowledge among
educators. Additionally, the application provides pedagogical
support, helping teachers understand instructional methods and
strategies to align their plans with educational goals. Ultimately,
this tool empowers teachers with simplicity, efficiency,
customization, collaboration, and professional growth opportunities
in lesson planning.
</p>
</div>
<div class="mt-8 grid grid-cols-2 gap-4">
<img
class="w-full rounded-lg"
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/content/office-long-2.png"
alt="office content 1"
/>
<img
class="mt-4 w-full rounded-lg lg:mt-10"
src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/content/office-long-1.png"
alt="office content 2"
/>
</div>
</div>
</section>
<section class="bg-gray-50 dark:bg-gray-900">
<div class="mx-auto max-w-screen-xl px-4 py-8 lg:px-6 lg:py-16">
<div
class="max-w-screen-xl text-gray-500 dark:text-gray-400 sm:text-lg"
>
<h2
class="mb-4 text-center text-4xl font-extrabold tracking-tight text-gray-900 dark:text-white"
>
Application available on
</h2>
<div
class="flex flex-col items-center justify-center gap-4 xs:flex-row"
>
<a
href="#"
class="flex items-center rounded-lg bg-primary-700 px-4 py-2 text-white"
>
<svg
class="mr-3 h-6 sm:h-9"
viewBox="0 0 236 256"
fill="currentColor"
>
<path
d="M138.52
123.58L16.78 0c1.99.46 4.08 1.26 6.25
2.46l152.16 84.31-36.67 36.8zm42
42.62l-36.84-37.39 38.2-38.33 44.62
24.73c12.67 7.01 12.67 18.5 0 25.51l-45.99
25.48zM7.32.9l126 127.9L7.46 255.1C2.88
252.82 0 247.5 0 239.87V16.05C0 8.48 2.83
3.21 7.33.9zM138.5 134.02l35.35 35.88-150.81
83.56a24.36 24.36 0 0 1-5.94
2.4l121.4-121.84z"
></path>
</svg>
<span
class="self-center whitespace-nowrap text-xl font-semibold dark:text-white"
>Play Store</span
>
</a>
<a
href="#"
class="flex items-center rounded-lg bg-primary-700 px-4 py-2 text-white"
>
<img src="web.svg" class="mr-3 h-6 sm:h-9" alt="" />
<span
class="self-center whitespace-nowrap text-xl font-semibold dark:text-white"
>Web App</span
>
</a>
</div>
</div>
</div>
</section>
<section id="contact-section" class="bg-white dark:bg-gray-900">
<div class="mx-auto max-w-screen-xl px-4 py-8 lg:py-16">
<h2
class="mb-4 text-center text-4xl font-extrabold tracking-tight text-gray-900 dark:text-white"
>
Contact Us
</h2>
<p
class="mb-8 text-center font-light text-gray-500 dark:text-gray-400 sm:text-xl lg:mb-16"
>
Feel free to reach out to us for any inquiries.
</p>
<form action="#" class="m-auto max-w-screen-sm space-y-8">
<div>
<label
for="email"
class="mb-2 block text-sm font-medium text-gray-900 dark:text-gray-300"
>Your email</label
>
<input
type="email"
id="email"
class="block w-full rounded-lg border border-gray-300 bg-gray-50 p-2.5 text-sm text-gray-900 shadow-sm focus:border-primary-500 focus:ring-primary-500 dark:border-gray-600 dark:bg-gray-700 dark:text-white dark:placeholder-gray-400 dark:shadow-sm-light dark:focus:border-primary-500 dark:focus:ring-primary-500"
placeholder="[email protected]"
required
/>
</div>
<div>
<label
for="subject"
class="mb-2 block text-sm font-medium text-gray-900 dark:text-gray-300"
>Subject</label
>
<input
type="text"
id="subject"
class="block w-full rounded-lg border border-gray-300 bg-gray-50 p-3 text-sm text-gray-900 shadow-sm focus:border-primary-500 focus:ring-primary-500 dark:border-gray-600 dark:bg-gray-700 dark:text-white dark:placeholder-gray-400 dark:shadow-sm-light dark:focus:border-primary-500 dark:focus:ring-primary-500"
placeholder="Let us know how we can help you"
required
/>
</div>
<div class="sm:col-span-2">
<label
for="message"
class="mb-2 block text-sm font-medium text-gray-900 dark:text-gray-400"
>Your message</label
>
<textarea
id="message"
rows="6"
class="block w-full rounded-lg border border-gray-300 bg-gray-50 p-2.5 text-sm text-gray-900 shadow-sm focus:border-primary-500 focus:ring-primary-500 dark:border-gray-600 dark:bg-gray-700 dark:text-white dark:placeholder-gray-400 dark:focus:border-primary-500 dark:focus:ring-primary-500"
placeholder="Leave a comment..."
></textarea>
</div>
<button
type="submit"
class="rounded-lg bg-primary-700 px-5 py-3 text-center text-sm font-medium text-white hover:bg-primary-800 focus:outline-none focus:ring-4 focus:ring-primary-300 dark:bg-primary-600 dark:hover:bg-primary-700 dark:focus:ring-primary-800 sm:w-fit"
>
Send message
</button>
</form>
</div>
</section>
<footer class="bg-gray-50 p-4 dark:bg-gray-800 sm:p-6">
<div class="mx-auto max-w-screen-xl">
<div class="md:flex md:justify-between">
<div class="mb-6 md:mb-0">
<a href="/" class="flex items-center">
<img
id="footer-logo"
src="logo.png"
class="mr-3 sm:w-[16vw]"
alt="Teacher Plus Logo"
/>
<span
class="self-center whitespace-nowrap text-2xl font-semibold dark:text-white"
></span>
</a>
</div>
<div class="grid grid-cols-2 gap-8 sm:grid-cols-3 sm:gap-6">
<div>
<h2
class="mb-6 text-sm font-semibold uppercase text-gray-900 dark:text-white"
>
Application
</h2>
<ul class="text-gray-600 dark:text-gray-400">
<li class="mb-4">
<a href="#" class="flex items-center">
<svg
class="mr-3 h-6 sm:h-9"
fill="currentColor"
viewBox="0 0 512 512"
xml:space="preserve"
>
<path
d="M512,256c0-68.38-26.63-132.668-74.981-181.019C388.668,26.629,324.38,0,256,0
C187.619,0,123.332,26.629,74.98,74.981C26.629,123.332,0,187.62,0,256s26.629,132.668,74.981,181.02
C123.332,485.371,187.619,512,256,512c68.38,0,132.668-26.629,181.019-74.98C485.37,388.668,512,324.38,512,256z
M471.909,343.53
c-19.928-18.858-45.447-32.163-73.256-41.424c1.522-15.065,2.31-30.482,2.31-46.11c0-15.627-0.788-31.041-2.31-46.105
c27.808-9.262,53.326-22.568,73.253-41.428c11.004,27.041,17.084,56.59,17.084,87.537
C488.989,286.944,482.91,316.491,471.909,343.53z
M134.044,255.997c0-13.405,0.605-26.63,1.778-39.577
c36.192,9.092,74.607,12.428,108.671,13.017v53.127c-34.062,0.589-72.477,3.926-108.671,13.015
C134.649,282.631,134.044,269.404,134.044,255.997z
M244.492,487.923c-27.028-4.988-52.52-27.467-72.765-64.557
c-0.366-0.67-0.72-1.354-1.082-2.031c23.512-16.669,48.395-26.35,73.846-28.595V487.923z
M267.503,392.742
c25.452,2.244,50.336,11.923,73.846,28.593c-0.361,0.678-0.717,1.362-1.083,2.033c-20.244,37.088-45.737,59.569-72.764,64.557
L267.503,392.742L267.503,392.742z
M267.503,24.069c27.027,4.988,52.52,27.469,72.764,64.557c0.366,0.67,0.72,1.353,1.082,2.03
c-23.508,16.669-48.391,26.35-73.845,28.593L267.503,24.069L267.503,24.069z
M244.492,119.248
c-25.452-2.245-50.336-11.927-73.844-28.596c0.36-0.675,0.715-1.358,1.079-2.026c20.245-37.088,45.737-59.569,72.765-64.557V119.248
z
M267.503,142.33c29.093-2.161,57.341-12.516,83.846-30.581c10.24,24.369,17.697,51.963,22.064,81.453
c-30.339,7.986-65.981,12.485-105.91,13.207V142.33L267.503,142.33z
M359.606,76.051c-8.943-16.111-18.913-29.839-29.674-41.011
c17.006,5.704,33.138,13.326,48.15,22.598C372.056,64.299,365.89,70.433,359.606,76.051z
M152.391,76.048
c-6.283-5.617-12.448-11.75-18.472-18.408c15.009-9.271,31.139-16.891,48.142-22.596C171.3,46.213,161.333,59.94,152.391,76.048z
M244.492,142.33v64.079c-39.929-0.723-75.572-5.221-105.912-13.208c4.368-29.491,11.824-57.085,22.064-81.454
C187.152,129.813,215.399,140.168,244.492,142.33z
M244.492,305.59v64.069c-29.091,2.162-57.339,12.518-83.847,30.583
c-10.239-24.368-17.696-51.958-22.063-81.446C168.921,310.81,204.564,306.313,244.492,305.59z
M152.394,435.933
c8.943,16.109,18.905,29.851,29.665,41.024c-17.008-5.707-33.142-13.329-48.154-22.604
C139.936,447.689,146.105,441.553,152.394,435.933z
M359.601,435.929c6.29,5.622,12.462,11.759,18.492,18.424
c-15.015,9.276-31.15,16.899-48.161,22.606C340.694,465.785,350.658,452.041,359.601,435.929z
M267.503,369.658v-64.069
c39.928,0.723,75.57,5.22,105.909,13.205c-4.368,29.488-11.823,57.078-22.062,81.445
C324.842,382.175,296.594,371.82,267.503,369.658z
M267.503,282.564v-53.127c34.062-0.588,72.477-3.926,108.669-13.016
c1.172,12.946,1.778,26.171,1.778,39.576c0,13.408-0.605,26.633-1.778,39.582C339.979,286.489,301.566,283.152,267.503,282.564z
M461.504,146.317c-0.075,0.077-0.156,0.144-0.23,0.223c-15.45,16.585-37.696,29.965-65.643,39.852
c-5.066-32.301-13.662-62.5-25.437-89.027c9.267-7.87,18.272-16.743,26.983-26.577C423.646,91.013,445.669,116.767,461.504,146.317z
M114.821,70.789c8.71,9.833,17.715,18.705,26.98,26.573c-11.776,26.527-20.372,56.726-25.438,89.028
c-27.946-9.887-50.19-23.266-65.638-39.851c-0.074-0.079-0.154-0.146-0.229-0.222C66.331,116.767,88.354,91.014,114.821,70.789z
M40.095,168.463c19.925,18.859,45.443,32.164,73.248,41.426c-1.522,15.064-2.31,30.48-2.31,46.106
c0,15.629,0.788,31.046,2.31,46.112c-27.807,9.261-53.325,22.565-73.252,41.421C29.09,316.491,23.011,286.944,23.011,256
C23.011,225.053,29.091,195.505,40.095,168.463z
M50.491,365.675c0.076-0.077,0.158-0.145,0.232-0.226
c15.45-16.582,37.695-29.958,65.641-39.844c5.066,32.297,13.662,62.494,25.434,89.019c-9.268,7.87-18.277,16.743-26.989,26.577
C88.345,420.977,66.325,395.224,50.491,365.675z
M397.189,441.202c-8.714-9.835-17.723-18.709-26.992-26.58
c11.774-26.525,20.368-56.72,25.433-89.018c27.947,9.884,50.194,23.262,65.645,39.845c0.075,0.081,0.156,0.147,0.234,0.226
C445.675,395.225,423.654,420.978,397.189,441.202z"
/>
</svg>
<span
class="self-center whitespace-nowrap font-semibold dark:text-white"
>Web App</span
>
</a>
</li>
<li>
<a href="#" class="flex items-center">
<svg
class="mr-3 h-6 sm:h-9"
viewBox="0 0 236 256"
fill="currentColor"
>
<path
d="M138.52
123.58L16.78 0c1.99.46 4.08 1.26 6.25
2.46l152.16 84.31-36.67 36.8zm42
42.62l-36.84-37.39 38.2-38.33 44.62
24.73c12.67 7.01 12.67 18.5 0 25.51l-45.99
25.48zM7.32.9l126 127.9L7.46 255.1C2.88
252.82 0 247.5 0 239.87V16.05C0 8.48 2.83
3.21 7.33.9zM138.5 134.02l35.35 35.88-150.81
83.56a24.36 24.36 0 0 1-5.94
2.4l121.4-121.84z"
></path>
</svg>
<span
class="self-center whitespace-nowrap font-semibold dark:text-white"
>Play Store</span
>
</a>
</li>
</ul>
</div>
<div>
<h2
class="mb-6 text-sm font-semibold uppercase text-gray-900 dark:text-white"
>
Follow us
</h2>
<ul class="text-gray-600 dark:text-gray-400">
<li class="mb-4">
<a href="" class="hover:underline">Facebook</a>
</li>
<li>
<a href="" class="hover:underline">Twitter</a>
</li>
</ul>
</div>
<div>
<h2
class="mb-6 text-sm font-semibold uppercase text-gray-900 dark:text-white"
>
Legal
</h2>
<ul class="text-gray-600 dark:text-gray-400">
<li class="mb-4">
<a href="privacy-policy.html" class="hover:underline">Privacy Policy</a>
</li>
<li>
<a href="privacy-policy.html" class="hover:underline">Terms & Conditions</a>
</li>
</ul>
</div>
</div>
</div>
<hr
class="my-6 border-gray-200 dark:border-gray-700 sm:mx-auto lg:my-8"
/>
<div class="sm:flex sm:items-center sm:justify-between">
<span class="text-sm text-gray-500 dark:text-gray-400 sm:text-center"
>© 2023 <a href="/" class="hover:underline">Teacher Plus</a>. All
Rights Reserved.
</span>
<div class="mt-4 flex space-x-6 sm:mt-0 sm:justify-center">
<a
href="#"
class="text-gray-500 hover:text-gray-900 dark:hover:text-white"
>
<svg
class="h-5 w-5"
fill="currentColor"
viewBox="0
0 24 24"
aria-hidden="true"
>
<path
fill-rule="evenodd"
d="M22
12c0-5.523-4.477-10-10-10S2 6.477 2 12c0
4.991 3.657 9.128 8.438
9.878v-6.987h-2.54V12h2.54V9.797c0-2.506
1.492-3.89 3.777-3.89 1.094 0 2.238.195
2.238.195v2.46h-1.26c-1.243 0-1.63.771-1.63
1.562V12h2.773l-.443 2.89h-2.33v6.988C18.343
21.128 22 16.991 22 12z"
clip-rule="evenodd"
/>
</svg>
</a>
<a
href="#"
class="text-gray-500 hover:text-gray-900 dark:hover:text-white"
>
<svg
class="h-5 w-5"
fill="currentColor"
viewBox="0 0 24 24"
aria-hidden="true"
>
<path
fill-rule="evenodd"
d="M12.315 2c2.43 0
2.784.013 3.808.06 1.064.049 1.791.218
2.427.465a4.902 4.902 0 011.772 1.153
4.902 4.902 0 011.153 1.772c.247.636.416
1.363.465 2.427.048 1.067.06 1.407.06
4.123v.08c0 2.643-.012 2.987-.06
4.043-.049 1.064-.218 1.791-.465
2.427a4.902 4.902 0 01-1.153 1.772 4.902
4.902 0 01-1.772
1.153c-.636.247-1.363.416-2.427.465-1.067.048-1.407.06-4.123.06h-.08c-2.643
0-2.987-.012-4.043-.06-1.064-.049-1.791-.218-2.427-.465a4.902
4.902 0 01-1.772-1.153 4.902 4.902 0
01-1.153-1.772c-.247-.636-.416-1.363-.465-2.427-.047-1.024-.06-1.379-.06-3.808v-.63c0-2.43.013-2.784.06-3.808.049-1.064.218-1.791.465-2.427a4.902
4.902 0 011.153-1.772A4.902 4.902 0
015.45 2.525c.636-.247 1.363-.416
2.427-.465C8.901 2.013 9.256 2 11.685
2h.63zm-.081 1.802h-.468c-2.456
0-2.784.011-3.807.058-.975.045-1.504.207-1.857.344-.467.182-.8.398-1.15.748-.35.35-.566.683-.748
1.15-.137.353-.3.882-.344 1.857-.047
1.023-.058 1.351-.058 3.807v.468c0
2.456.011 2.784.058 3.807.045.975.207
1.504.344 1.857.182.466.399.8.748
1.15.35.35.683.566
1.15.748.353.137.882.3 1.857.344
1.054.048 1.37.058 4.041.058h.08c2.597 0
2.917-.01 3.96-.058.976-.045 1.505-.207
1.858-.344.466-.182.8-.398
1.15-.748.35-.35.566-.683.748-1.15.137-.353.3-.882.344-1.857.048-1.055.058-1.37.058-4.041v-.08c0-2.597-.01-2.917-.058-3.96-.045-.976-.207-1.505-.344-1.858a3.097
3.097 0 00-.748-1.15 3.098 3.098 0
00-1.15-.748c-.353-.137-.882-.3-1.857-.344-1.023-.047-1.351-.058-3.807-.058zM12
6.865a5.135 5.135 0 110 10.27 5.135
5.135 0 010-10.27zm0 1.802a3.333 3.333 0
100 6.666 3.333 3.333 0
000-6.666zm5.338-3.205a1.2 1.2 0 110 2.4
1.2 1.2 0 010-2.4z"
clip-rule="evenodd"
/>
</svg>
</a>
<a
href="#"
class="text-gray-500 hover:text-gray-900 dark:hover:text-white"
>
<svg
class="h-5 w-5"
fill="currentColor"
viewBox="0 0 24 24"
aria-hidden="true"
>
<path
d="M8.29 20.251c7.547 0 11.675-6.253
11.675-11.675 0-.178
0-.355-.012-.53A8.348 8.348 0 0022
5.92a8.19 8.19 0 01-2.357.646 4.118
4.118 0 001.804-2.27 8.224 8.224 0
01-2.605.996 4.107 4.107 0 00-6.993
3.743 11.65 11.65 0 01-8.457-4.287
4.106 4.106 0 001.27 5.477A4.072
4.072 0 012.8 9.713v.052a4.105 4.105
0 003.292 4.022 4.095 4.095 0
01-1.853.07 4.108 4.108 0 003.834
2.85A8.233 8.233 0 012 18.407a11.616
11.616 0 006.29 1.84"
/>
</svg>
</a>
<a
href="#"
class="text-gray-500 hover:text-gray-900 dark:hover:text-white"
>
<svg
class="h-5 w-5"
fill="currentColor"
viewBox="0 0 24 24"
aria-hidden="true"
>
<path
fill-rule="evenodd"
d="M12
2C6.477 2 2 6.484 2 12.017c0
4.425 2.865 8.18 6.839
9.504.5.092.682-.217.682-.483
0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608
1.003.07 1.531 1.032 1.531
1.032.892 1.53 2.341 1.088
2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951
0-1.093.39-1.988
1.029-2.688-.103-.253-.446-1.272.098-2.65
0 0 .84-.27 2.75 1.026A9.564
9.564 0 0112 6.844c.85.004
1.705.115 2.504.337 1.909-1.296
2.747-1.027 2.747-1.027.546
1.379.202 2.398.1 2.651.64.7
1.028 1.595 1.028 2.688 0
3.848-2.339 4.695-4.566
4.943.359.309.678.92.678 1.855 0
1.338-.012 2.419-.012 2.747 0
.268.18.58.688.482A10.019 10.019
0 0022 12.017C22 6.484 17.522 2
12 2z"
clip-rule="evenodd"
/>
</svg>
</a>
<a
href="#"
class="text-gray-500 hover:text-gray-900 dark:hover:text-white"
>
<svg
class="h-5 w-5"
fill="currentColor"
viewBox="0 0
24 24"
aria-hidden="true"
>
<path
fill-rule="evenodd"
d="M12
2C6.48 2 2 6.48 2 12s4.48 10
10 10c5.51 0 10-4.48
10-10S17.51 2 12 2zm6.605
4.61a8.502 8.502 0 011.93
5.314c-.281-.054-3.101-.629-5.943-.271-.065-.141-.12-.293-.184-.445a25.416
25.416 0
00-.564-1.236c3.145-1.28
4.577-3.124 4.761-3.362zM12
3.475c2.17 0 4.154.813 5.662
2.148-.152.216-1.443
1.941-4.48
3.08-1.399-2.57-2.95-4.675-3.189-5A8.687
8.687 0 0112
3.475zm-3.633.803a53.896
53.896 0 013.167
4.935c-3.992 1.063-7.517
1.04-7.896 1.04a8.581 8.581
0 014.729-5.975zM3.453
12.01v-.26c.37.01 4.512.065
8.775-1.215.25.477.477.965.694
1.453-.109.033-.228.065-.336.098-4.404
1.42-6.747 5.303-6.942
5.629a8.522 8.522 0
01-2.19-5.705zM12
20.547a8.482 8.482 0
01-5.239-1.8c.152-.315
1.888-3.656
6.703-5.337.022-.01.033-.01.054-.022a35.318
35.318 0 011.823 6.475 8.4
8.4 0
01-3.341.684zm4.761-1.465c-.086-.52-.542-3.015-1.659-6.084
2.679-.423 5.022.271
5.314.369a8.468 8.468 0
01-3.655 5.715z"
clip-rule="evenodd"
/>
</svg>
</a>
</div>
</div>
</div>
</footer>
<script src="index.js"></script>
<script src="https://unpkg.com/[email protected]/dist/flowbite.js"></script>
</body>
</html>