-
Notifications
You must be signed in to change notification settings - Fork 0
Description
Description
Create the Kisokosok / Segédletek page (called Tanulmányi tanácsadás on the old site). The page should display a list of resources, guides, and study-related materials. To manage this content dynamically, implement a new Payload collection.
Backend Requirements (Payload Collection)
Create a new collection named resources (or similar, to be confirmed).
Fields:
• title_hu (Text, required) — Title in Hungarian
• title_en (Text, required) — Title in English
• description_hu (RichText, optional) — Description in Hungarian
• description_en (RichText, optional) — Description in English
• files (Array, optional) — Each item contains:
• displayName (Text, required) — File display name
• file (Upload/Media, required) — The file itself
Frontend Requirements
• Route: /kisokosok/
• Display the resources from the new collection in a clean, structured layout.
• Each resource should show:
• Title (Hungarian/English depending on language toggle)
• RichText description (if present)
• Downloadable file links (if present)
• External file links must open in a new tab.
• Layout and styling should follow the design language of the old site, with minor improvements where reasonable.
• The page must be fully responsive across all screen sizes.
• If content is loaded from the database:
• Show a loading animation until the data (including files) is fully fetched.
• If there is no available data, display a fallback message.