diff --git a/src/components/Typography/UiHeading.vue b/src/components/Typography/UiHeading.vue
new file mode 100644
index 0000000..3c91ff9
--- /dev/null
+++ b/src/components/Typography/UiHeading.vue
@@ -0,0 +1,48 @@
+
+
+
+
+
+
+
diff --git a/src/components/Typography/UiParagraph.vue b/src/components/Typography/UiParagraph.vue
new file mode 100644
index 0000000..105854e
--- /dev/null
+++ b/src/components/Typography/UiParagraph.vue
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
diff --git a/src/components/UiButton/UiButton.params.ts b/src/components/UiButton/UiButton.params.ts
new file mode 100644
index 0000000..681734a
--- /dev/null
+++ b/src/components/UiButton/UiButton.params.ts
@@ -0,0 +1,10 @@
+export const colorVariants = {
+ primary: ['bg-accent-50', 'text-primary', 'hover:bg-accent-100', 'active:bg-accent-150'],
+ secondary: [
+ 'bg-transparent',
+ 'text-primary',
+ 'hover:bg-accent-50',
+ 'border:bg-accent-50',
+ 'border',
+ ],
+}
diff --git a/src/components/UiButton/UiButton.vue b/src/components/UiButton/UiButton.vue
new file mode 100644
index 0000000..5f54b78
--- /dev/null
+++ b/src/components/UiButton/UiButton.vue
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+