Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add FAQ and Contact links to ListWidget; update terminology from Modu… #668

Merged
merged 18 commits into from
Dec 19, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
297b407
Add FAQ and Contact links to ListWidget; update terminology from Modu…
jeromehardaway Dec 19, 2024
c8f2379
Add step to install WebKit dependencies in Playwright workflow
jeromehardaway Dec 19, 2024
871f211
Update WebKit dependency version in Playwright workflow
jeromehardaway Dec 19, 2024
90b70e1
Enhance Playwright workflow by adding specific WebKit dependencies i…
jeromehardaway Dec 19, 2024
06fac13
Update WebKit dependencies installation to use correct ICU version a…
jeromehardaway Dec 19, 2024
2920f3f
Refactor WebKit dependencies installation in Playwright workflow to i…
jeromehardaway Dec 19, 2024
bb9fb38
Update upload-artifact action to version 4 in Playwright workflow
jeromehardaway Dec 19, 2024
f4e828c
added libvpx7
jeromehardaway Dec 19, 2024
b204880
Refactor Playwright workflow to improve caching and streamline WebKit…
jeromehardaway Dec 19, 2024
232ce28
Update WebKit dependencies with correct package versions in Playwrig…
jeromehardaway Dec 19, 2024
2bab054
Refactor Playwright workflow to let Playwright handle dependencies in…
jeromehardaway Dec 19, 2024
70267f5
remove webkit
jeromehardaway Dec 19, 2024
7e7583e
Remove WebKit configuration from Playwright setup
jeromehardaway Dec 19, 2024
7b4deac
add to playwright to depenencies
jeromehardaway Dec 19, 2024
095ea66
save
jeromehardaway Dec 19, 2024
af1a01d
save
jeromehardaway Dec 19, 2024
91e195d
update web server command in Playwright config to use 'npm run dev'
jeromehardaway Dec 19, 2024
b256ef9
Update Playwright config to run build before starting server and exte…
jeromehardaway Dec 19, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/components/widgets/list-widget.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ const ListWidget = ({ className, mode }: TProps) => {
<li className="tw-pr-5 tw-mb-[11px]">
<Anchor path="/code-of-conduct">Code of Conduct</Anchor>
</li>
<li className="tw-w-1/2 tw-pr-5 tw-mb-[11px]">
<Anchor path="/faq">FAQ</Anchor>
</li>
<li className="tw-w-1/2 tw-pr-5 tw-mb-[11px]">
<Anchor path="/contact-us">Contact us</Anchor>
</li>
</ul>
</div>
);
Expand Down
8 changes: 1 addition & 7 deletions src/components/widgets/two-col-list-widget.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,15 @@ const TwoColumnListWidget = ({ className, mode }: TProps) => {
<li className="tw-w-1/2 tw-pr-5 tw-mb-[11px]">
<Anchor path="/about-us">Start here</Anchor>
</li>
<li className="tw-w-1/2 tw-pr-5 tw-mb-[11px]">
<Anchor path="/faq">FAQ</Anchor>
</li>
<li className="tw-w-1/2 tw-pr-5 tw-mb-[11px]">
<Anchor path="/blogs/blog">Blog</Anchor>
</li>
<li className="tw-w-1/2 tw-pr-5 tw-mb-[11px]">
<Anchor path="/curriculum/subjects">Modules</Anchor>
<Anchor path="/subjects/all">Subjects</Anchor>
</li>
<li className="tw-w-1/2 tw-pr-5 tw-mb-[11px]">
<Anchor path="/about-us">About us</Anchor>
</li>
<li className="tw-w-1/2 tw-pr-5 tw-mb-[11px]">
<Anchor path="/contact-us">Contact us</Anchor>
</li>
</ul>
</div>
);
Expand Down
4 changes: 2 additions & 2 deletions src/data/innerpages/apply-to-be-a-student.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
},
{
"id": 3,
"title": "Modules Taught",
"counter": 100
"title": "Subjects Taught",
"counter": 13
},
{
"id": 4,
Expand Down
4 changes: 2 additions & 2 deletions src/data/innerpages/become-a-mentor.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
},
{
"id": 3,
"title": "Modules Taught",
"counter": 100,
"title": "Subjects Taught",
"counter": 10,
"suffix": "+"
},
{
Expand Down
Loading