From 97154f46d077ee9c7df806167e86a0d166221870 Mon Sep 17 00:00:00 2001 From: Liviu Burcusel Date: Fri, 16 Jan 2026 11:07:15 +0100 Subject: [PATCH] Created outlined button and redesigned homepage. --- app/components/ui/button/index.ts | 2 ++ app/pages/index.vue | 27 +++++++++++++-------------- package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 18 insertions(+), 17 deletions(-) diff --git a/app/components/ui/button/index.ts b/app/components/ui/button/index.ts index b2e66e0..c3f8174 100644 --- a/app/components/ui/button/index.ts +++ b/app/components/ui/button/index.ts @@ -16,6 +16,8 @@ export const buttonVariants = cva( secondary: "bg-secondary text-secondary-foreground hover:bg-secondary/80", ghost: "hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50", link: "text-primary underline-offset-4 hover:underline", + outlined: + "border border-primary/80 hover:border-primary text-primary/80 bg-background shadow-xs hover:bg-accent hover:text-primary dark:bg-input/30 dark:hover:bg-input/50", }, size: { default: "h-9 px-4 py-2 has-[>svg]:px-3", diff --git a/app/pages/index.vue b/app/pages/index.vue index d86d17f..a81f077 100644 --- a/app/pages/index.vue +++ b/app/pages/index.vue @@ -26,20 +26,19 @@ useSeoMeta({ diff --git a/package-lock.json b/package-lock.json index 57eb67f..2ffc67d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "glowing-fiesta", - "version": "0.0.2", + "version": "0.0.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "glowing-fiesta", - "version": "0.0.2", + "version": "0.0.3", "hasInstallScript": true, "dependencies": { "@pinia/nuxt": "^0.11.3", diff --git a/package.json b/package.json index f9d2853..78044ec 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "glowing-fiesta", - "version": "0.0.2", + "version": "0.0.3", "type": "module", "private": true, "scripts": { -- 2.49.1