diff --git a/src/pages/faq/index.astro b/src/pages/faq/index.astro index f4f9eb6a..800b48de 100644 --- a/src/pages/faq/index.astro +++ b/src/pages/faq/index.astro @@ -13,6 +13,30 @@ import Layout from "#layouts/Layout.astro";
@@ -323,5 +347,18 @@ import Layout from "#layouts/Layout.astro"; } } + +.keyword-cloud { + @apply flex flex-wrap gap-2 mt-6 p-4 bg-gray-50 rounded-lg shadow-md; + + &__tag { + @apply bg-blue-100 text-blue-800 text-sm font-medium px-3 py-1 rounded-full hover:bg-blue-200; + transition: all 0.3s ease-in-out; + } + + &__tag:hover { + @apply shadow-md; + } +} \ No newline at end of file