-
diff --git a/src/content/examples/components/card/structure.svelte b/src/content/examples/components/card/structure.svelte
index e09f5067..408f9d98 100644
--- a/src/content/examples/components/card/structure.svelte
+++ b/src/content/examples/components/card/structure.svelte
@@ -2,28 +2,27 @@
import { BookOpen } from 'lucide-svelte';
-
-
+
-
+ Getting started
-
+
Learn how to install Lapikit and set up the preprocessor in your Svelte project.
-
+
-
+
+ 5 min read
+
+
+ {#snippet prepend()}
+
+ {/snippet}
+ Read
+
+
diff --git a/src/content/examples/components/card/variants.svelte b/src/content/examples/components/card/variants.svelte
index 69972467..adea9d0e 100644
--- a/src/content/examples/components/card/variants.svelte
+++ b/src/content/examples/components/card/variants.svelte
@@ -1,16 +1,16 @@
-
- Accent background with white text.
+ Filled
+ Accent background with white text.
-
- Transparent background with accent border.
+ Outline
+ Transparent background with accent border.
-
- No background or border, accent text only.
+ Text
+ No background or border, accent text only.
diff --git a/src/content/examples/hooks/areaTheme-toggle.svelte b/src/content/examples/hooks/areaTheme-toggle.svelte
new file mode 100644
index 00000000..1aea64f3
--- /dev/null
+++ b/src/content/examples/hooks/areaTheme-toggle.svelte
@@ -0,0 +1,27 @@
+
+
+
+ Area A : {areaA.active}
+
+
+
+
+ Area B : {areaB.active}
+
+
+
+
+ Area C : {areaC.active}
+
+
diff --git a/src/content/examples/hooks/globalTheme-toggle.svelte b/src/content/examples/hooks/globalTheme-toggle.svelte
new file mode 100644
index 00000000..f31006b4
--- /dev/null
+++ b/src/content/examples/hooks/globalTheme-toggle.svelte
@@ -0,0 +1,23 @@
+
+
+ useTheme(app.active === 'dark' ? 'light' : 'dark')}
+ aria-label="Toggle theme"
+ size="lg"
+>
+ {#if app.active === 'light'}
+
+
+
+ {:else}
+
+
+
+ {/if}
+