diff --git a/src/components/atoms/button.astro b/src/components/atoms/button.astro
index 119864d..55f8025 100644
--- a/src/components/atoms/button.astro
+++ b/src/components/atoms/button.astro
@@ -1,15 +1,16 @@
---
-export interface Props extends astroHTML.JSX.ButtonHTMLAttributes {}
+export interface Props {
+ href: string;
+}
const { props } = Astro;
+
+const classes = {
+ main: 'inline-flex items-center px-4 h-10 text-base font-medium rounded-md shadow-sm text-white bg-primary-600 select-none cursor-pointer',
+ hover: 'hover:bg-primary-700',
+ active: 'active:translate-y-px',
+ focus: 'focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-primary-500',
+};
---
-
+