Skip to content

Commit 5698050

Browse files
committed
test
1 parent f5422ff commit 5698050

10 files changed

Lines changed: 201 additions & 85 deletions

File tree

assets/css/custom.css

Lines changed: 124 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -814,6 +814,130 @@ p, .text, .prose p, .prose {
814814
color: #f9fafb !important;
815815
}
816816

817+
/* Project cards styling */
818+
.project-card {
819+
display: flex;
820+
flex-direction: column;
821+
margin-bottom: 3rem;
822+
padding: 2rem;
823+
background: rgba(255, 255, 255, 0.9);
824+
border-radius: 12px;
825+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
826+
transition: transform 0.2s ease, box-shadow 0.2s ease;
827+
}
828+
829+
.project-card:hover {
830+
transform: translateY(-2px);
831+
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
832+
}
833+
834+
.project-image {
835+
width: 100%;
836+
height: 250px;
837+
overflow: hidden;
838+
border-radius: 8px;
839+
margin-bottom: 1.5rem;
840+
}
841+
842+
.project-image img {
843+
width: 100%;
844+
height: 100%;
845+
object-fit: cover;
846+
object-position: top;
847+
transition: transform 0.3s ease;
848+
}
849+
850+
.project-image img:hover {
851+
transform: scale(1.05);
852+
}
853+
854+
.project-content {
855+
width: 100%;
856+
}
857+
858+
.project-title {
859+
margin-top: 0;
860+
margin-bottom: 0.5rem;
861+
color: #2c3e50;
862+
font-size: 1.5rem;
863+
font-weight: bold;
864+
line-height: 1.3;
865+
}
866+
867+
.project-subtitle {
868+
margin-top: 0;
869+
margin-bottom: 1rem;
870+
color: #3498db;
871+
font-size: 1rem;
872+
font-weight: 500;
873+
font-style: italic;
874+
}
875+
876+
.project-content p {
877+
margin-bottom: 1rem;
878+
line-height: 1.6;
879+
color: #555;
880+
}
881+
882+
.project-content ul {
883+
margin-bottom: 1rem;
884+
padding-left: 1.5rem;
885+
}
886+
887+
.project-content li {
888+
margin-bottom: 0.5rem;
889+
line-height: 1.5;
890+
}
891+
892+
.project-content a {
893+
color: #3498db;
894+
text-decoration: none;
895+
font-weight: 500;
896+
}
897+
898+
.project-content a:hover {
899+
text-decoration: underline;
900+
}
901+
902+
/* Dark mode styling */
903+
.dark .project-card {
904+
background: rgba(45, 55, 72, 0.9);
905+
color: #e2e8f0;
906+
}
907+
908+
.dark .project-title {
909+
color: #f7fafc;
910+
}
911+
912+
.dark .project-subtitle {
913+
color: #63b3ed;
914+
}
915+
916+
.dark .project-content p {
917+
color: #cbd5e0;
918+
}
919+
920+
.dark .project-content a {
921+
color: #63b3ed;
922+
}
923+
924+
/* Responsive design */
925+
@media (max-width: 768px) {
926+
.project-card {
927+
padding: 1rem;
928+
margin-bottom: 2rem;
929+
}
930+
931+
.project-image {
932+
height: 200px;
933+
margin-bottom: 1rem;
934+
}
935+
936+
.project-title {
937+
font-size: 1.3rem;
938+
}
939+
}
940+
817941
/* Responsive design for projects - mobile layout */
818942
@media (max-width: 768px) {
819943
.page-wrapper .group.bg-white\/90,

content/projects/_index.md

Lines changed: 54 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,59 @@ design:
99

1010
# Page sections
1111
sections:
12-
- block: collection
12+
- block: markdown
1313
content:
14-
title: 'projects'
15-
text: ''
16-
count: 0
17-
filters:
18-
folders:
19-
- projects
20-
exclude_featured: false
21-
order: desc
22-
design:
23-
view: card
24-
show_date: true
25-
show_read_time: false
26-
show_read_more: true
27-
show_image: true
28-
show_links: true
29-
columns: '1'
30-
css_class: 'text-left'
14+
text: |-
15+
<div class="project-card">
16+
<div class="project-image">
17+
<img src="/projects/facet-project.png" alt="FACET Project" />
18+
</div>
19+
<div class="project-content">
20+
<h3 class="project-title">FACET: Teacher-Centred LLM-Based Multi-Agent Systems</h3>
21+
<p class="project-subtitle">AI for Education</p>
22+
<p>FACET is a teacher-centred LLM-based multi-agent system that supports teachers in developing personalized educational materials according to student characteristics, such as motivation, self-concept and performance.</p>
23+
<p><strong>key features:</strong></p>
24+
<ul>
25+
<li>Multi-agent architecture: Different agents handle content generation, student analysis, and quality assurance</li>
26+
<li>Personalization: Adapts materials based on individual student characteristics and learning preferences</li>
27+
<li>Teacher-centred design: Empowers teachers with AI assistance while maintaining pedagogical control</li>
28+
<li>Scalable framework: Can be adapted for different subjects and educational contexts</li>
29+
<p><strong>outcome:</strong></p>
30+
<ul>
31+
<li>Together with teachers, we develop a teacher-centred LLM-based multi-agent system to develop AI-based personalized teaching materials. Therefore, we do not only focus on performance, but also consider the motivational and affective aspects of students</li>
32+
</ul>
33+
<p><a href="https://arxiv.org/abs/2508.11401" target="_blank">Read the preprint →</a></p>
34+
</div>
35+
</div>
36+
37+
- block: markdown
38+
content:
39+
text: |-
40+
<div class="project-card">
41+
<div class="project-image">
42+
<img src="/projects/cognitive-load-ar-study.jpg" alt="Cognitive Load AR Study" />
43+
</div>
44+
<div class="project-content">
45+
<h3 class="project-title">Cognitive Load-based Augmented Reality Design for Vocational Training</h3>
46+
<p class="project-subtitle">Augmented Reality design</p>
47+
<p>This research project investigates the design of human-centred Augmented Reality (AR) for learning using cognitive theories, such as cognitive load theory.</p>
48+
<p><strong>research questions:</strong></p>
49+
<ul>
50+
<li>How does visual guidance affect cognitive load in AR environments?</li>
51+
<li>What are the optimal design patterns for reducing cognitive load?</li>
52+
<li>How can eye-tracking data inform AR interface design?</li>
53+
</ul>
54+
<p><strong>key findings:</strong></p>
55+
<ul>
56+
<li>Visual guidance significantly reduces cognitive load in AR learning tasks</li>
57+
<li>Specific design patterns are more effective than others</li>
58+
<li>Individual differences in cognitive processing affect AR usability</li>
59+
</ul>
60+
<p><strong>outcome:</strong></p>
61+
<ul>
62+
<li>This research contributes to the theoretical understanding of cognitive load in AR environments and provides practical guidelines for designing more effective AR learning systems</li>
63+
</ul>
64+
<p><a href="https://aisel.aisnet.org/icis2024/" target="_blank">ICIS 2024 Paper →</a> | <a href="https://onlinelibrary.wiley.com/doi/10.1111/jcal.13095" target="_blank">JCAL Paper →</a></p>
65+
</div>
66+
</div>
3167
---
1.48 MB
Loading
Lines changed: 13 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,34 @@
11
---
22
title: "Cognitive load-based Augmented Reality design for vocational training"
3-
startdate: 2023-04-01
4-
enddate: 2025-09-14
3+
date: 2025-09-14
54
featured: true
6-
7-
# Project image
8-
image:
9-
filename: "cognitive-load-study.jpg"
10-
focal_point: "Smart"
11-
preview_only: false
12-
13-
# Project links
14-
links:
15-
- name: "AR and visual guidance - Paper"
16-
url: "https://aisel.aisnet.org/icis2024/"
17-
icon_pack: "fas"
18-
icon: "file-alt"
19-
- name: "Design guidelines for AR - Paper"
20-
url: "https://onlinelibrary.wiley.com/doi/10.1111/jcal.13095"
21-
icon_pack: "fas"
22-
icon: "file-alt"
23-
24-
25-
# Project details
26-
# tags: ["Augmented Reality", "Cognitive Load", "Eye-Tracking", "Human-Computer Interaction"]
5+
tags: ["Augmented Reality", "Cognitive Load", "Eye-Tracking", "Human-Computer Interaction"]
276
---
287

298
This research project investigates the design of human-centred Augmented Rearlity (AR) for learning. Therefore it used cognitive theories, such as cognitive load theory. The study provides valuable insights into how AR interfaces can be optimized to reduce cognitive load and improve learning outcomes.
309

31-
32-
## Research Questions
10+
## research questions
3311

3412
- How does visual guidance affect cognitive load in AR environments?
3513
- What are the optimal design patterns for reducing cognitive load?
3614
- How can eye-tracking data inform AR interface design?
3715

38-
## Methodology
16+
## methodology
3917

40-
- **Eye-Tracking Analysis**: Comprehensive gaze pattern analysis
41-
- **Cognitive Load Measurement**: Multi-dimensional assessment of mental effort
42-
- **Controlled Experiments**: Rigorous experimental design with statistical analysis
43-
- **User Experience Evaluation**: Qualitative and quantitative UX assessment
18+
- Controlled experiments with quantitative and qualitative data assessment
19+
- Eye-tracking analysis
4420

45-
## Key Findings
21+
## key findings
4622

4723
- Visual guidance significantly reduces cognitive load in AR learning tasks
4824
- Specific design patterns are more effective than others
4925
- Individual differences in cognitive processing affect AR usability
5026

51-
## Impact
27+
## read more
28+
29+
- [AR and visual guidance - Paper](https://aisel.aisnet.org/icis2024/)
30+
- [Design guidelines for AR - Paper](https://onlinelibrary.wiley.com/doi/10.1111/jcal.13095)
31+
32+
## impact
5233

5334
This research contributes to the theoretical understanding of cognitive load in AR environments and provides practical guidelines for designing more effective AR learning systems.

content/projects/facet-project.md

Lines changed: 10 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,22 @@
11
---
22
title: "FACET: Teacher-Centred LLM-Based Multi-Agent Systems"
33
date: 2025-08-01
4-
authors: ["admin"]
54
featured: true
6-
summary: "A teacher-centred LLM-based multi-agent system that supports teachers in developing personalized educational materials according to student characteristics."
7-
8-
# Project image
9-
image:
10-
filename: "facet-project.jpg"
11-
focal_point: "Smart"
12-
preview_only: false
13-
14-
# Project links
15-
links:
16-
- name: "arXiv Paper"
17-
url: "https://arxiv.org/abs/2508.11401"
18-
icon_pack: "ai"
19-
icon: "arxiv"
20-
- name: "GitHub"
21-
url: "https://github.com/example/facet"
22-
icon_pack: "fab"
23-
icon: "github"
24-
25-
# Project details
265
tags: ["AI", "Education", "LLM", "Multi-Agent Systems"]
276
---
287

29-
FACET is a teacher-centred LLM-based multi-agent system that supports teachers in developing personalized educational materials according to student characteristics. The system uses multiple AI agents to analyze student needs, generate appropriate content, and provide recommendations for educational worksheets.
30-
31-
## Key Features
8+
FACET is a teacher-centred LLM-based multi-agent system that supports teachers in developing personalized educational materials according to student characteristics, such as motivation, self-concept and performance. The system uses multiple AI agents to analyze student needs, generate appropriate content, and provide recommendations for educational worksheets.
329

33-
- **Multi-Agent Architecture**: Different agents handle content generation, student analysis, and quality assurance
34-
- **Personalization**: Adapts materials based on individual student characteristics and learning preferences
35-
- **Teacher-Centred Design**: Empowers teachers with AI assistance while maintaining pedagogical control
36-
- **Scalable Framework**: Can be adapted for different subjects and educational contexts
10+
## key features
3711

38-
## Technology Stack
12+
- Multi-agent architecture: Different agents handle content generation, student analysis, and quality assurance
13+
- Personalization: Adapts materials based on individual student characteristics and learning preferences
14+
- Teacher-centred design: Empowers teachers with AI assistance while maintaining pedagogical control
15+
- Scalable framework: Can be adapted for different subjects and educational contexts
3916

40-
- Large Language Models (LLMs)
41-
- Multi-Agent Systems
42-
- Educational Technology
43-
- Python, React, and modern web technologies
17+
## read more:
18+
- [Facet - Preprint](https://arxiv.org/abs/2508.11401)
4419

45-
## Impact
20+
## impact
4621

47-
This project represents a significant advancement in AI-assisted education, providing teachers with powerful tools to create personalized learning experiences while maintaining the human element in education.
22+
Together with teachers, we develop a teacher-centred LLM-based multi-agent system to develop AI-based personalized teaching materials. Therefore, we do not only focus on performance, but also consider the motivational and affective aspects of students.

content/projects/facet-project.png

59.3 KB
Loading

content/projects/featured.jpg

1.48 MB
Loading

content/projects/featured.png

59.3 KB
Loading

static/images/projects/FACET.png

59.3 KB
Loading
1.48 MB
Loading

0 commit comments

Comments
 (0)