Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
53 changes: 53 additions & 0 deletions src/app/(app)/[lang]/ehk-osztondij/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
import { PageHeader } from "@/components/common/PageHeader";
import { Card, CardContent } from "@/components/ui/card";
import { getDictionary } from "@/get-dictionary";
import { Locale } from "@/i18n-config";
import { ReactNode } from "react";

export default async function EHKScholarshipPage({
params,
}: {
params: Promise<{ lang: Locale }>;
}) {
const { lang } = await params;
const dictionary = await getDictionary(lang);

return (
<div className="min-h-screen bg-gray-50">
<div className="container mx-auto px-4 py-8">
<PageHeader title={dictionary.scholarships.ehk.title} />{" "}
<div className="flex flex-col gap-4 md:gap-6 lg:px-4 px-2 py-8">
{dictionary.scholarships.ehk.items.map((item) => (
<Card
key={item.title}
className="group hover:shadow-md transition-all duration-300"
>
<CardContent className="p-3 md:p-6">
<div className="flex flex-col gap-2 md:gap-3">
<div className="flex flex-col gap-2 md:gap-3">
<h3 className="font-bold text-xl leading-tight text-gray-900 group-hover:text-[#862633] transition-colors">
{item.title}
</h3>
<div className="space-y-2">
{item.paragraphs.map((para, i) => (
<Paragraph key={i}>{para}</Paragraph>
))}
</div>
</div>
</div>
</CardContent>
</Card>
))}
</div>
</div>
</div>
);
}

function Paragraph({ children }: { children: ReactNode }) {
return (
<div className="prose max-w-none text-gray-700 richtext">
<p>{children}</p>
</div>
);
}
2 changes: 1 addition & 1 deletion src/app/(app)/components/navigation-items.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export function getNavigationItems(lang: string): NavigationItem[] {
},
{
label: t("EHK ösztöndíjak", "EHK scholarships"),
href: "#",
href: link("/ehk-osztondij"),
targetBlank: false,
},
{
Expand Down
59 changes: 59 additions & 0 deletions src/dictionaries/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,65 @@
},
"more_info": "For more information, please visit the website of the University Social Committee (ESZB): ",
"eszb_website": "ESZB website"
},
"ehk": {
"title" : "EHK scholarships",
"items": [
{
"title": "University Student Union Scholarship",
"paragraphs": [
"Members of the University Student Union are rewarded through this scholarship for carrying out the tasks defined in the Rules and Regulations of the BME Students’ and Doctoral Students’ Union. Reports submitted by the representatives are published on the website of the University Student Union."
]
},
{
"title": "University Doctoral Student Union Scholarship",
"paragraphs": [
"Members of the University Doctoral Student Union are rewarded through this scholarship for carrying out the tasks defined in the Rules and Regulations of the BME Students’ and Doctoral Students’ Union. Reports submitted by the representatives are published on the website of the University Doctoral Student Union."
]
},
{
"title": "University BME Scholarship",
"paragraphs": [
"The University BME Scholarship is one of the highest-level recognitions based on professional and scientific achievements that go beyond the requirements defined in the model curricula. Through this scholarship, the University Student Union rewards the most outstanding students who achieved exceptional professional or scientific results during the previous semester."
]
},
{
"title": "National Higher Education Scholarship",
"paragraphs": [
"For students with outstanding academic results and exceptional professional achievements, the minister responsible for higher education awards the National Higher Education Scholarship for the duration of one academic year. The procedure and details of the evaluation are defined by the Rector’s Instruction issued for the given year."
]
},
{
"title": "University Public Life Scholarship",
"paragraphs": [
"The University Public Life Scholarship is intended for students who carry out public life activities supporting the work of the University Student Union, such as assisting in the organization of events."
]
},
{
"title": "University Community Scholarship",
"paragraphs": [
"The University Community Scholarship is intended for students who actively participate in community life at BME. Applications may be submitted for activities carried out in university self-organizing student groups and colleges for advanced studies, in the BME Racing Teams Community, or in the Student International Relations Committee. The aim of the scholarship is to recognize students who create value at the university through their community work alongside their studies."
]
},
{
"title": "Sports Scholarship",
"paragraphs": [
"Within the framework of the Sports Scholarship, the University Student Union rewards students who, in addition to physical education classes and their university studies, have demonstrated outstanding athletic performance."
]
},
{
"title": "BME “Good Student, Good Athlete” Scholarship",
"paragraphs": [
"The “Good Student, Good Athlete” Scholarship not only rewards outstanding athletic performance but also takes into account successful academic achievements alongside competitive sports activities. To submit a valid application, the student’s credit index must reach a value of 3.00."
]
},
{
"title": "Scientific Students’ Conference Scholarship",
"paragraphs": [
"The aim of the scholarship is to recognize outstanding work performed at the Scientific Students’ Conference. Students may apply if they participated in the Scientific Students’ Conference organized at BME and achieved 1st, 2nd or 3rd place, or received a special prize or commendation."
]
}
]
}
},
"language_education": {
Expand Down
59 changes: 59 additions & 0 deletions src/dictionaries/hu.json
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,65 @@
},
"more_info": "Bővebb információkat az Egyetemi Szociális Bizottság (ESZB) honlapján olvashattok: ",
"eszb_website": "ESZB honlapja"
},
"ehk": {
"title" : "EHK ösztöndíjak",
"items": [
{
"title": "Egyetemi Hallgatói Képviselet ösztöndíj",
"paragraphs": [
"Az Egyetemi Hallgatói Képviselet tagjai a BME Hallgatói és Doktorandusz Önkormányzat Alapszabályában rögzített feladatok végrehajtásáért ezen ösztöndíjon belül kerülnek jutalmazásra. A képviselők beszámolói az EHK honlapján publikálásra kerülnek."
]
},
{
"title": "Egyetemi Doktorandusz Képviselet ösztöndíj",
"paragraphs": [
"Az Egyetemi Doktorandusz Képviselet tagjai a BME Hallgatói és Doktorandusz Önkormányzat Alapszabályában rögzített feladatok végrehajtásáért ezen ösztöndíjon belül kerülnek jutalmazásra. A képviselők beszámolói az EDK honlapján publikálásra kerülnek"
]
},
{
"title": "Egyetemi BME ösztöndíj",
"paragraphs": [
"Az Egyetemi BME ösztöndíj a mintatantervekben meghatározott követelményeken túlmutató szakmai és tudományos teljesítményen alapuló legmagasabb szintű elismerések egyike. Az ösztöndíjjal az Egyetemi Hallgatói Képviselet a legkiválóbb hallgatókat jutalmazza, akik kimagasló szakmai vagy tudományos eredményt értek el az előző félévük során."
]
},
{
"title": "Nemzeti felsőoktatási ösztöndíj",
"paragraphs": [
"A kiemelkedő tanulmányi eredményű, szakmai téren kimagasló teljesítményt nyújtó hallgatók részére a felsőoktatásért felelős miniszter nemzeti felsőoktatási ösztöndíjat adományoz egy tanév időtartamára. Az ösztöndíj elbírálásának menetét, részleteit az adott évben kiadott Rektori Utasítás határozza meg."
]
},
{
"title": "Egyetemi közéleti ösztöndíj",
"paragraphs": [
"Az Egyetemi közéleti ösztöndíj azoknak a hallgatóknak szól, akik az EHK munkáját segítő közéleti tevékenységet végeznek, például rendezvények szervezésében való segédkezés."
]
},
{
"title": "Egyetemi közösségi ösztöndíj",
"paragraphs": [
"Az Egyetemi közösségi ösztöndíj azoknak a hallgatóknak szól, akik a BME közösségi életében aktívan részt vesz. Pályázni lehet egyetemi öntevékeny körben és szakkollégiumban, a Műegyetemi Versenycsapat Közösségben vagy a Hallgatói Külügyi Testületben végzett tevékenységgel. Az ösztöndíj célja, hogy elismerje azokat a hallgatókat, akik tanulmányaik mellett közösségi munkájukkal is értéket teremtenek az egyetemen."
]
},
{
"title": "Sportösztöndíj",
"paragraphs": [
"A Sportösztöndíj keretein belül az Egyetemi Hallgatói Képviselet azokat a hallgatókat jutalmazza, akik a testnevelési órákon felül és az egyetemi tanulmányaik mellett kimagasló sportteljesítményt nyújtottak."
]
},
{
"title": "BME “Jó tanuló, jó sportoló” ösztöndíj",
"paragraphs": [
"A “Jó tanuló, jó sportoló” ösztöndíj nem csak a kimagasló sportteljesítményt díjazó ösztöndíj, hanem a versenyszerű sportolás mellett sikeresen teljesített tanulmányi eredményeket is figyelembe veszi. Az érvényes pályázáshoz a hallgató kreditindexének el kell érnie a 3,00 értékét."
]
},
{
"title": "Tudományos Diákköri Konferencia ösztöndíj",
"paragraphs": [
"Az ösztöndíj célja, hogy elismerje a Tudományos Diákköri Konferencián nyújtott kiemelkedő munkát. Azok a hallgatók pályázhatnak, akik részt vettek a BME-n megrendezésre kerülő TDK Konferencián, és azon 1., 2., vagy 3. helyezést ért el, különdíjban vagy dicséretben részesültek."
]
}
]
}
},
"language_education": {
Expand Down