diff --git a/frontend/src/components/BrowseThemes.vue b/frontend/src/components/BrowseThemes.vue
index 1c1642c7..8c1a7dde 100644
--- a/frontend/src/components/BrowseThemes.vue
+++ b/frontend/src/components/BrowseThemes.vue
@@ -4,7 +4,7 @@
import { useI18n } from "vue-i18n";
import {AGE_TO_THEMES, THEMESITEMS} from "@/utils/constants.ts";
- // Receive the selectedTheme from the parent component
+ // Receive the selectedTheme and selectedAge from the parent component
const props = defineProps({
selectedTheme: {
type: String,
@@ -31,7 +31,6 @@
// Update the cards value with the fetched themes
allCards.value = await response.json();
cards.value = allCards.value;
- //console.log(allCards.value);
} catch (error) {
console.error("Error fetching themes:", error);
}
diff --git a/frontend/src/components/ThemeCard.vue b/frontend/src/components/ThemeCard.vue
index 2bafa2ce..ac9b3904 100644
--- a/frontend/src/components/ThemeCard.vue
+++ b/frontend/src/components/ThemeCard.vue
@@ -1,18 +1,23 @@
-
+
diff --git a/frontend/src/i18n/locale/en.json b/frontend/src/i18n/locale/en.json
index 6095a79f..7966251c 100644
--- a/frontend/src/i18n/locale/en.json
+++ b/frontend/src/i18n/locale/en.json
@@ -12,7 +12,7 @@
"choose-age": "Select age",
"theme-options": {
"all": "All themes",
- "culture": "culture",
+ "culture": "Culture",
"electricity-and-mechanics": "Electricity and mechanics",
"nature-and-climate": "Nature and climate",
"agriculture": "Agriculture",
diff --git a/frontend/src/router/index.ts b/frontend/src/router/index.ts
index d86d519b..0d1b5a0d 100644
--- a/frontend/src/router/index.ts
+++ b/frontend/src/router/index.ts
@@ -119,7 +119,7 @@ router.beforeEach(async (to, from, next) => {
// Verify if user is logged in before accessing certain routes
if (to.meta.requiresAuth) {
if (!authState.isLoggedIn.value) {
- //next("/login");
+ //Next("/login");
next();
} else {
next();
diff --git a/frontend/src/views/SingleTheme.vue b/frontend/src/views/SingleTheme.vue
index 85af7153..73336fa3 100644
--- a/frontend/src/views/SingleTheme.vue
+++ b/frontend/src/views/SingleTheme.vue
@@ -3,7 +3,7 @@
-
+