Skip to content

Commit f8ac980

Browse files
committed
Fixed some spelling errors and made a format change to how information is displayed
1 parent 62cc9de commit f8ac980

File tree

2 files changed

+14
-7
lines changed

2 files changed

+14
-7
lines changed

assets/components/Website/Pages/Home/Section/TheWorkshops.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const { loggedIn } = defineProps({
3030
<h4 class="mb-4 mt-0 p-0 font-work-sans text-2xl font-bold capitalize not-italic text-white">Community</h4>
3131
<p class="text-balance mb-4 text-base text-white">
3232
Community workshops are those created by, well, you! They are not officially maintained by the PHP School team and not all of them are compatible with the online system. Compatible ones are
33-
labeled, otherwise, you can always run run them
33+
labeled, otherwise, you can always run them
3434
<router-link class="text-[#e91e63] hover:underline" to="/offline">offline</router-link>
3535
.
3636
</p>

assets/components/Website/Pages/PageHome.vue

+13-6
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import InfoSection from "./Home/InfoSection.vue";
1515
import GettingStarted from "./Home/Section/GettingStarted.vue";
1616
import TheWorkshops from "./Home/Section/TheWorkshops.vue";
1717
import BuildYourOwn from "./Home/Section/BuildYourOwn.vue";
18+
import { ChevronRightIcon } from "@heroicons/vue/24/solid";
1819
1920
import { SparklesIcon } from "@heroicons/vue/24/solid";
2021
import { useStudentStore } from "../../../stores/student";
@@ -151,12 +152,18 @@ onUnmounted(() => {
151152

152153
<template #right>
153154
<div class="mt-28 w-full space-y-8 text-left sm:px-5 md:mt-36 lg:mt-0 lg:w-1/3">
154-
<h2 class="font-work-sans text-5xl font-bold text-white">Open Source educational PHP Workshops</h2>
155-
<p class="font-base font-work-sans text-lg text-white">
156-
PHP School is a set of workshops each designed to teach a specific topic, tool, technology. Some beginner, some advanced. Each workshop consists of multiple exercises where your task is
157-
to code a solution to solve a problem. All our workshops are open source and you can contribute to them with spelling & bug fixes, new exercises. You can even build and publish your own
158-
workshop.
159-
</p>
155+
<h2 class="font-work-sans text-5xl font-bold text-white">Open-Source Gateway To PHP Mastery</h2>
156+
<div class="grid grid-cols-4">
157+
<div class="p-2 col-span-1 text-right w-4"><span class=" text-pink-600 text-xl font-semibold">&#62;</span></div>
158+
<div class="p-2 col-span-3 text-white xl:-ml-24 "><span class="text-pink-600 font-semibold">Interactive Workshops:</span><span> Engaging sessions covering beginner to advanced topics in PHP</span></div>
159+
<div class="p-2 col-span-1 text-right w-4"><span class=" text-pink-600 text-xl font-semibold">&#62;</span></div>
160+
<div class="p-2 col-span-3 text-white xl:-ml-24 "><span class="text-pink-600 font-semibold">Hands-On Learning:</span><span class="col-span-1"> Solve real-world problems through coding exercises</span></div>
161+
<div class="p-2 col-span-1 text-right w-4"><span class=" text-pink-600 text-xl font-semibold">&#62;</span></div>
162+
<div class="p-2 col-span-3 text-white xl:-ml-24 "><span class="text-pink-600 font-semibold">Community Collaboration:</span><span class="col-span-1"> Contribute, fix bugs, and create your own workshops</span></div>
163+
<div class="p-2 col-span-1 text-right w-4"><span class=" text-pink-600 text-xl font-semibold">&#62;</span></div>
164+
<div class="p-2 col-span-3 text-white xl:-ml-24 "><span class="text-pink-600 font-semibold">Open Source Education:</span><span class="col-span-1"> Access all workshops for free and learn at your own pace</span></div>
165+
</div>
166+
160167
<div class="flex justify-start">
161168
<PrimaryButton to="/online">GET STARTED</PrimaryButton>
162169
</div>

0 commit comments

Comments
 (0)