diff --git a/frontend/public/fact-checker-logo.svg b/frontend/public/fact-checker-logo.svg
new file mode 100644
index 0000000..b6ea0a5
--- /dev/null
+++ b/frontend/public/fact-checker-logo.svg
@@ -0,0 +1,19 @@
+
diff --git a/frontend/public/favicon.svg b/frontend/public/favicon.svg
new file mode 100644
index 0000000..8910f1f
--- /dev/null
+++ b/frontend/public/favicon.svg
@@ -0,0 +1,7 @@
+
diff --git a/frontend/src/pages/About.jsx b/frontend/src/pages/About.jsx
index 0072f1b..8a827b9 100755
--- a/frontend/src/pages/About.jsx
+++ b/frontend/src/pages/About.jsx
@@ -170,8 +170,8 @@ const About = () => {
Verdikt sa určí na základe pomeru:
- - Ak
Skóre_Pravda / Celkové_Skóre > 0.5 → ✅ Pravdepodobne pravda
- - Ak
Skóre_Nepravda / Celkové_Skóre > 0.5 → ❌ Pravdepodobne nepravda
+ - Ak
Skóre_Pravda / Celkové_Skóre > 0.5 → 🟢 Pravdepodobne pravda
+ - Ak
Skóre_Nepravda / Celkové_Skóre > 0.5 → 🔴 Pravdepodobne nepravda
- Inak → ⚠️ Nejednoznačné (ak sú dôkazy protichodné alebo slabé)
diff --git a/frontend/src/pages/Home.jsx b/frontend/src/pages/Home.jsx
index 2d858e6..8bc2c52 100755
--- a/frontend/src/pages/Home.jsx
+++ b/frontend/src/pages/Home.jsx
@@ -199,18 +199,21 @@ function Home() {
if (isObject) {
const entailment = s.entailment_prob || 0;
const contradiction = s.contradiction_prob || 0;
- const neutral = s.neutral_prob || 0;
const entPct = Math.round(entailment * 100);
const conPct = Math.round(contradiction * 100);
- const neuPct = Math.round(neutral * 100);
- if (s.label === 'entailment') {
+ if (entailment > 0.5) {
badge = {entPct}% Pravda;
- } else if (s.label === 'contradiction') {
+ } else if (contradiction > 0.5) {
badge = {conPct}% Nepravda;
} else {
- badge = Neutrálne ({neuPct}%);
+ // Ak je neutrálne, zobrazíme najvyššiu pravdepodobnosť (Pravda/Nepravda)
+ if (entailment >= contradiction) {
+ badge = {entPct}% Pravda;
+ } else {
+ badge = {conPct}% Nepravda;
+ }
}
}