From 25393b0f96f15efcfce0e267adead4b6dcd3d1f1 Mon Sep 17 00:00:00 2001 From: jezzahehn Date: Sat, 24 May 2025 22:53:49 -0400 Subject: [PATCH] feat: first draft of learning resource cards --- .../molecules/LearningResourceWrapper.vue | 24 +++++++++++ src/locales/en_US.ts | 9 ++++ src/routes/resources.vue | 41 ++++++++++++++++++- 3 files changed, 73 insertions(+), 1 deletion(-) create mode 100644 src/components/molecules/LearningResourceWrapper.vue diff --git a/src/components/molecules/LearningResourceWrapper.vue b/src/components/molecules/LearningResourceWrapper.vue new file mode 100644 index 0000000..f2cacac --- /dev/null +++ b/src/components/molecules/LearningResourceWrapper.vue @@ -0,0 +1,24 @@ + + + \ No newline at end of file diff --git a/src/locales/en_US.ts b/src/locales/en_US.ts index 02c11b6..f234bb3 100644 --- a/src/locales/en_US.ts +++ b/src/locales/en_US.ts @@ -16,5 +16,14 @@ export default { "title": "Community", "text": "The Viossa community is rich and colourful, drawing from many global traditions due to its worldwide online membership. Since the teaching culture puts an emphasis on linguistic immersion, and discourages prescriptivism, the culture of Viossa is as diverse and varied as the language and the people who speak it. For many, their personal dialect is a key form of identity and expression. The fluid nature of Viossa and lack of defined meanings makes Viossa popular for creative purposes, such as poetry and songwriting.", } + ], + "resources": [ + { + "title": "Discord Server", + "desc": "This is where most of the action happens! Hop on in!", + "link": "https://discord.gg/g3mG2gYjZD", + "image": "discord.png", + "alt": "Discord logo" + } ] } \ No newline at end of file diff --git a/src/routes/resources.vue b/src/routes/resources.vue index 38957cb..d71181b 100644 --- a/src/routes/resources.vue +++ b/src/routes/resources.vue @@ -1,3 +1,42 @@ + +