Skip to content

feat: pull course in navbar and front page from airbase table instead…#1029

Merged
tolgadur merged 1 commit into
masterfrom
tolgadur/make-homepage-courses-dynamic
Jun 19, 2025
Merged

feat: pull course in navbar and front page from airbase table instead…#1029
tolgadur merged 1 commit into
masterfrom
tolgadur/make-homepage-courses-dynamic

Conversation

@tolgadur

@tolgadur tolgadur commented Jun 17, 2025

Copy link
Copy Markdown
Contributor

Description

Previously we were pulling courses from both the airtable in the /courses path and from a constant.tsx that needs to be maintained manually. The values from the constant were used on the frontpage, the footer and the navigation bar. This PR unified this and pulls all from Airtable

Needed clarifications:

  • The short description text on the constant.tsx is different than the values in airtable. Do we want to update the airtable descriptions or is this fine?
  • The fields "isNew" and "isFeatured" don't exist in the airtable courses table. I added them manually for the two courses these were defined on. Do we want to add these into the airtable courses table?

Issue

Fixes #746

Developer checklist

Screenshot

Screenshot 2025-06-19 at 11 53 13

Screen recording when loading:

Screen.Recording.2025-06-18.at.15.00.44.mov

@coderabbitai

coderabbitai Bot commented Jun 17, 2025

Copy link
Copy Markdown
Contributor

Walkthrough

The codebase was refactored to replace static course data with dynamic fetching from an API. The homepage, navigation dropdowns, and footer now use a new useCourses hook to load course data asynchronously, displaying loading indicators as needed. Type definitions and static constants for courses were removed from shared libraries.

Changes

File(s) Change Summary
apps/website/src/components/Nav/_NavLinks.tsx Refactored to fetch courses dynamically with useCourses; updated dropdowns and loading state handling.
apps/website/src/components/homepage/CourseSection.tsx Uses useCourses for dynamic course loading; renders loading state; updates featured/regular course logic.
apps/website/src/components/homepage/CourseSection.test.tsx Updated tests to mock dynamic course data instead of static constants; adjusted assertions and event tracking.
apps/website/src/lib/hooks/useCourses.ts Added new useCourses hook to fetch, sort, and provide course data and loading state.
apps/website/src/pages/_app.tsx Injects dynamic courses and loading state into the Footer component.
libraries/ui/src/Footer.tsx Footer now accepts courses and loading props; renders loading indicator or dynamic course links.
libraries/ui/src/CourseCard.tsx Replaced courseType prop with cadence string; removed CourseType alias.
libraries/ui/src/constants.ts Removed Course, CourseType, and COURSES exports; only contactUsUrl remains.
apps/website/src/lib/api/db/tables.ts Fixed typo (certificatonDescriptioncertificationDescription); added isFeatured and isNew properties.
apps/website/src/pages/api/certificates/[certificateId].ts Fixed typo in property access for certificationDescription.
apps/website/src/components/Nav/Nav.test.tsx Refactored to mock axios-hooks for dynamic courses; added tests for dropdown course links rendering.
apps/website/src/tests/testUtils.ts Added mockCourse utility function to generate mock course objects with defaults and overrides.

Sequence Diagram(s)

sequenceDiagram
    participant User
    participant NavLinks
    participant useCourses
    participant API

    User->>NavLinks: Navigate to site
    NavLinks->>useCourses: Call hook
    useCourses->>API: Fetch /api/courses
    API-->>useCourses: Return course data
    useCourses-->>NavLinks: Provide courses and loading state
    NavLinks->>User: Render dropdown (loading or links)
Loading
sequenceDiagram
    participant User
    participant CourseSection
    participant useCourses
    participant API

    User->>CourseSection: View homepage
    CourseSection->>useCourses: Call hook
    useCourses->>API: Fetch /api/courses
    API-->>useCourses: Return course data
    useCourses-->>CourseSection: Provide courses and loading state
    CourseSection->>User: Render featured and regular courses (or loading)
Loading

Assessment against linked issues

Objective (Issue #) Addressed Explanation
Homepage courses should be dynamic, sourced from Airtable (746)
Remove hardcoded/static course data from constants (746)
Show loading state for dynamic course data (746)

Poem

In the warren, news is hopping—
Static lists are truly stopping!
Now courses bloom, fetched on demand,
With loading dots across the land.
No more constants, just fresh delight—
Dynamic learning every night!
🐇✨

Warning

There were issues while running some tools. Please review the errors and either fix the tool's configuration or disable the tool if it's a critical failure.

🔧 ESLint

If the error stems from missing dependencies, add them to the package.json file. For unrecoverable errors (e.g., due to private dependencies), disable the tool in the CodeRabbit configuration.

npm error Exit handler never called!
npm error This is an error with npm itself. Please report this error at:
npm error https://github.com/npm/cli/issues
npm error A complete log of this run can be found in: /.npm/_logs/2025-06-19T09_27_32_242Z-debug-0.log


📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 4673439 and 19b8561.

⛔ Files ignored due to path filters (3)
  • apps/website/src/components/Nav/__snapshots__/Nav.test.tsx.snap is excluded by !**/*.snap
  • apps/website/src/components/homepage/__snapshots__/CourseSection.test.tsx.snap is excluded by !**/*.snap
  • libraries/ui/src/__snapshots__/Footer.test.tsx.snap is excluded by !**/*.snap
📒 Files selected for processing (12)
  • apps/website/src/__tests__/testUtils.ts (1 hunks)
  • apps/website/src/components/Nav/Nav.test.tsx (5 hunks)
  • apps/website/src/components/Nav/_NavLinks.tsx (6 hunks)
  • apps/website/src/components/homepage/CourseSection.test.tsx (1 hunks)
  • apps/website/src/components/homepage/CourseSection.tsx (3 hunks)
  • apps/website/src/lib/api/db/tables.ts (5 hunks)
  • apps/website/src/lib/hooks/useCourses.ts (1 hunks)
  • apps/website/src/pages/_app.tsx (2 hunks)
  • apps/website/src/pages/api/certificates/[certificateId].ts (1 hunks)
  • libraries/ui/src/CourseCard.tsx (4 hunks)
  • libraries/ui/src/Footer.tsx (2 hunks)
  • libraries/ui/src/constants.ts (0 hunks)
💤 Files with no reviewable changes (1)
  • libraries/ui/src/constants.ts
✅ Files skipped from review due to trivial changes (1)
  • apps/website/src/tests/testUtils.ts
🚧 Files skipped from review as they are similar to previous changes (10)
  • apps/website/src/pages/api/certificates/[certificateId].ts
  • apps/website/src/pages/_app.tsx
  • apps/website/src/lib/hooks/useCourses.ts
  • apps/website/src/components/homepage/CourseSection.test.tsx
  • apps/website/src/components/homepage/CourseSection.tsx
  • apps/website/src/components/Nav/Nav.test.tsx
  • apps/website/src/lib/api/db/tables.ts
  • libraries/ui/src/CourseCard.tsx
  • libraries/ui/src/Footer.tsx
  • apps/website/src/components/Nav/_NavLinks.tsx

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@tolgadur tolgadur force-pushed the tolgadur/make-homepage-courses-dynamic branch 2 times, most recently from 4b52094 to d29e35b Compare June 17, 2025 16:05
@tolgadur tolgadur marked this pull request as ready for review June 17, 2025 16:14

@greptile-apps greptile-apps Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR Summary

Major architectural change to unify course data management by migrating from hardcoded constants to dynamic Airtable fetching across the homepage, navbar, and footer components.

  • New useCourses hook in apps/website/src/lib/hooks/useCourses.ts handles centralized course fetching and enrichment with manual properties
  • Modified CourseSection.tsx to include loading states and null checks for empty courses
  • Consider adding Storybook stories for the modified components to document new dynamic behavior
  • Potential performance impact from dynamic fetching vs. build-time optimization should be evaluated
  • Data consistency questions regarding course descriptions and feature flags (isNew, isFeatured) need resolution in Airtable

7 files reviewed, 5 comments
Edit PR Review Bot Settings | Greptile

Comment thread apps/website/src/components/homepage/CourseSection.test.tsx Outdated
Comment thread apps/website/src/components/Nav/_NavLinks.tsx Outdated
Comment thread apps/website/src/lib/hooks/useCourses.ts Outdated
Comment thread apps/website/src/components/homepage/CourseSection.tsx
Comment thread apps/website/src/components/homepage/CourseSection.tsx

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 5

🧹 Nitpick comments (7)
apps/website/src/pages/_app.tsx (1)

44-45: Footer rendered with stale data on first paint

While courses are loading the array is empty, so the footer initially shows no “Explore” links and then snaps in. Consider displaying a skeleton or keeping previously-fetched data in a global cache (React Context / SWR) to avoid layout shift.

apps/website/src/lib/hooks/useCourses.ts (1)

32-36: Resource fetch should be GET, not POST

Retrieving courses is idempotent – using POST is semantically incorrect and may surprise caches / observability tools. Switch to GET unless the endpoint truly requires a body.

libraries/ui/src/Footer.tsx (1)

88-89: Guard against empty course list

If courses.length === 0, the “Explore” column renders empty space.
Fallback links (e.g. to /courses) or conditional rendering will improve UX.

-links={courses.map(...)}
+links={courses.length ? courses.map(...) : [{ url: '/courses', label: 'All courses' }]}
apps/website/src/components/Nav/_NavLinks.tsx (1)

38-47: Duplicate network request – consider central cache/context

useCourses is now called in _app, NavLinks, CourseSection, etc.
Although axios-hooks has rudimentary caching, each hook still sets up its own request/handlers. Moving the data into a React Context (populated once in _app) will eliminate redundant hooks and simplify loading states.

Not urgent, but worth tracking before the number of consumers grows.

apps/website/src/components/homepage/CourseSection.test.tsx (1)

36-41: Type safety lost in mocked useAxios return tuple

The cast to as UseAxiosResult hides tuple shape mismatches (only two non-null items supplied).
Populate the full [state, refetch, cancel] tuple to avoid silent test breakage when the library API changes.

const axiosState = { data: mockData, loading: false, error: null };
return [axiosState, vi.fn(), vi.fn()] as UseAxiosResult;
apps/website/src/components/homepage/CourseSection.tsx (2)

20-24: Fallback if no isFeatured course is flagged

Today the whole section vanishes when no item is marked isFeatured, which is a silent failure that may go unnoticed in production.
Consider defaulting to the first course instead, or at least logging a warning so the data team knows the flag is missing.


54-69: key should be stable and unique – use an id/slug instead of title

Using title as a key can lead to duplicated keys if two courses share the same name or if a title changes between renders, forcing React to remount elements and lose state.

-              key={course.title}
+              key={course.id ?? course.slug ?? course.path}

(Replace with whatever unique identifier the API provides.)

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between e8ac3c1 and d29e35b.

⛔ Files ignored due to path filters (3)
  • apps/website/src/components/Nav/__snapshots__/Nav.test.tsx.snap is excluded by !**/*.snap
  • apps/website/src/components/homepage/__snapshots__/CourseSection.test.tsx.snap is excluded by !**/*.snap
  • libraries/ui/src/__snapshots__/Footer.test.tsx.snap is excluded by !**/*.snap
📒 Files selected for processing (7)
  • apps/website/src/components/Nav/_NavLinks.tsx (3 hunks)
  • apps/website/src/components/homepage/CourseSection.test.tsx (1 hunks)
  • apps/website/src/components/homepage/CourseSection.tsx (3 hunks)
  • apps/website/src/lib/hooks/useCourses.ts (1 hunks)
  • apps/website/src/pages/_app.tsx (2 hunks)
  • libraries/ui/src/Footer.tsx (3 hunks)
  • libraries/ui/src/constants.ts (0 hunks)
💤 Files with no reviewable changes (1)
  • libraries/ui/src/constants.ts
🧰 Additional context used
🧬 Code Graph Analysis (3)
apps/website/src/lib/hooks/useCourses.ts (2)
apps/website/src/pages/api/courses/index.ts (1)
  • GetCoursesResponse (6-9)
libraries/ui/src/constants.ts (1)
  • CourseType (1-1)
apps/website/src/components/homepage/CourseSection.test.tsx (1)
apps/website/src/pages/api/courses/index.ts (1)
  • GetCoursesResponse (6-9)
apps/website/src/components/Nav/_NavLinks.tsx (3)
apps/website/src/lib/hooks/useCourses.ts (1)
  • useCourses (31-63)
apps/website/src/lib/routes.ts (1)
  • ROUTES (80-94)
libraries/ui/src/Tag.tsx (1)
  • Tag (12-30)
🔇 Additional comments (1)
apps/website/src/pages/_app.tsx (1)

12-19: ```shell
#!/bin/bash
set -e

Locate files with 'useCourses' in their filename

echo "Searching for files named useCourses:"
files=$(fd -t f -i useCourses || true)
if [ -z "$files" ]; then
echo "No files found with fd; falling back to find:"
files=$(find . -type f -iname 'useCourses')
fi
echo "Found files:"
echo "$files"

Print contents of those files to inspect implementation

for file in $files; do
echo "---- Begin $file ----"
sed -n '1,200p' "$file"
echo "---- End $file ----"
done


</details>

</blockquote></details>

</details>

<!-- This is an auto-generated comment by CodeRabbit for review status -->

Comment thread apps/website/src/lib/hooks/useCourses.ts Outdated
Comment thread apps/website/src/lib/hooks/useCourses.ts Outdated
Comment thread libraries/ui/src/Footer.tsx Outdated
Comment thread apps/website/src/components/homepage/CourseSection.tsx
Comment thread apps/website/src/components/homepage/CourseSection.tsx
@domdomegg

Copy link
Copy Markdown
Member

Code generally looks fine - what does this look like when loading? (maybe attach a short screen recording/similar?)

@tolgadur

Copy link
Copy Markdown
Contributor Author

Code generally looks fine - what does this look like when loading? (maybe attach a short screen recording/similar?)

I think it looks fine imo. I attached a screen recording. Is the differing text between constants.tsx and the airtable db fine? (see PR description for more info).

@domdomegg

Copy link
Copy Markdown
Member

Maybe some kind of loading indicator would be good? Otherwise there's an unexpected jump on page load which isn't that great.

I think moving the isNew/isFeatured logic into Airtable sounds sensible rather than hardcoding!

@tolgadur

Copy link
Copy Markdown
Contributor Author

Maybe some kind of loading indicator would be good? Otherwise there's an unexpected jump on page load which isn't that great.

Done. Have a look at the updated screenshare.

I think moving the isNew/isFeatured logic into Airtable sounds sensible rather than hardcoding!

Could you give me rights to add airtable fields to the courses table?

Comment thread apps/website/src/lib/hooks/useCourses.ts Outdated
Comment thread apps/website/src/lib/hooks/useCourses.ts
Comment thread apps/website/src/pages/_app.tsx
Comment thread apps/website/src/components/Nav/__snapshots__/Nav.test.tsx.snap
Comment thread apps/website/src/components/homepage/CourseSection.test.tsx Outdated

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🔭 Outside diff range comments (1)
libraries/ui/src/CourseCard.tsx (1)

99-105: Guard against empty cadence to avoid rendering a blank tag.

If the backend ever returns an empty string, the UI will render an empty <Tag> which looks broken. A one-line guard keeps the UX intact.

-      <Tag className="course-card__type">{cadence}</Tag>
+      {cadence && (
+        <Tag className="course-card__type">{cadence}</Tag>
+      )}
🧹 Nitpick comments (2)
libraries/ui/src/CourseCard.tsx (2)

18-20: Remove obsolete ESLint suppression and consider stricter typing for cadence.

cadence is now actually consumed by CourseCard, therefore the react/no-unused-prop-types suppression is no longer needed.
Additionally, leaving the prop as plain string invites typos. A union such as 'Self-paced' | 'Cohort-based' | 'Bootcamp' (or whatever the canonical values are) would give us free validation at compile-time.

-  // eslint-disable-next-line react/no-unused-prop-types
-  cadence: string,
+  cadence:
+    | 'Self-paced'
+    | 'Cohort-based'
+    | 'Bootcamp'
+    | string; // fallback for yet-unknown values

108-118: Drop the unused cadence prop forwarded to FeaturedCourseCard.

FeaturedCourseCard doesn’t reference cadence; passing it adds noise and may trigger “unused prop” warnings further down. If you foresee future use, a TODO comment would be clearer.

-      cadence={cadence}
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 616a51d and 60fe91e.

📒 Files selected for processing (8)
  • apps/website/src/components/Nav/_NavLinks.tsx (6 hunks)
  • apps/website/src/components/homepage/CourseSection.tsx (3 hunks)
  • apps/website/src/lib/api/db/tables.ts (5 hunks)
  • apps/website/src/lib/hooks/useCourses.ts (1 hunks)
  • apps/website/src/pages/_app.tsx (2 hunks)
  • libraries/ui/src/CourseCard.tsx (4 hunks)
  • libraries/ui/src/Footer.tsx (2 hunks)
  • libraries/ui/src/constants.ts (0 hunks)
💤 Files with no reviewable changes (1)
  • libraries/ui/src/constants.ts
🚧 Files skipped from review as they are similar to previous changes (6)
  • apps/website/src/pages/_app.tsx
  • apps/website/src/lib/hooks/useCourses.ts
  • apps/website/src/components/homepage/CourseSection.tsx
  • apps/website/src/lib/api/db/tables.ts
  • libraries/ui/src/Footer.tsx
  • apps/website/src/components/Nav/_NavLinks.tsx
⏰ Context from checks skipped due to timeout of 90000ms (1)
  • GitHub Check: ci

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Nitpick comments (1)
apps/website/src/components/homepage/CourseSection.test.tsx (1)

88-91: Consider enhancing snapshot test coverage.

While the snapshot test is functional, consider whether it should also verify loading states since the component now handles asynchronous data fetching.

You could add a test for the loading state:

test('renders loading state correctly', () => {
  // Mock loading state
  vi.mocked(useAxios).mockReturnValueOnce([{
    data: null,
    loading: true,
    error: null,
  }, null!, null!] as UseAxiosResult);
  
  const { container } = render(<CourseSection />);
  expect(container).toMatchSnapshot();
});
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between a5a7797 and ab8a885.

📒 Files selected for processing (1)
  • apps/website/src/components/homepage/CourseSection.test.tsx (1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (1)
  • GitHub Check: ci
🔇 Additional comments (3)
apps/website/src/components/homepage/CourseSection.test.tsx (3)

1-12: LGTM! Clean imports and type definitions.

The imports are well-organized and the UseAxiosResult type definition correctly captures the return type from axios-hooks for better type safety in the mock.


13-36: Excellent mock helper function design.

The mockCourse helper function provides a comprehensive default course object with all required fields and allows flexible overrides. This is a clean pattern for test data generation that makes the tests more maintainable.


94-117: Good implementation of BEM class selector approach.

The test correctly implements the BEM class selector strategy as recommended in past review comments. This approach is more future-proof than relying on text content that might change. The test coverage includes both featured and regular course cards with proper GA event verification.

Comment thread apps/website/src/components/homepage/CourseSection.test.tsx
@tolgadur tolgadur requested a review from tarinrickett June 19, 2025 09:09
@tolgadur tolgadur force-pushed the tolgadur/make-homepage-courses-dynamic branch from bcd505f to 4673439 Compare June 19, 2025 09:13
… of constants.tsx

minor bugfixes as suggested by greptile

fix import issues

add progress dots

simplify useCourses hook

move loading to footer

add loading to navbar

update snapshots

update coursesection test

nav tests
@tolgadur tolgadur force-pushed the tolgadur/make-homepage-courses-dynamic branch from 4673439 to 19b8561 Compare June 19, 2025 09:26
@tolgadur tolgadur enabled auto-merge (squash) June 19, 2025 10:23

@tarinrickett tarinrickett left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

are the screenshots updated to the latest changes? just to confirm updates like cadence are working as expected

@tolgadur tolgadur merged commit e1e988d into master Jun 19, 2025
3 checks passed
@tolgadur tolgadur deleted the tolgadur/make-homepage-courses-dynamic branch June 19, 2025 10:41
@tolgadur

Copy link
Copy Markdown
Contributor Author

cadence

Ah no I updated them now. sorry about that. I updated it now. Cadence works but the wording is a bit different. We would need to change that in the airtable.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Make homepage courses dynamic

3 participants