diff --git a/public/videos/.DS_Store b/public/videos/.DS_Store index 1df887e..5008ddf 100644 Binary files a/public/videos/.DS_Store and b/public/videos/.DS_Store differ diff --git a/src/components/Button.jsx b/src/components/Button.jsx index 4a56105..1092b77 100644 --- a/src/components/Button.jsx +++ b/src/components/Button.jsx @@ -29,6 +29,12 @@ const variantStyles = { white: 'ring-slate-700 text-white hover:ring-slate-300 active:ring-slate-200 active:text-slate-100 focus-visible:outline-white', }, + link: { + slate: + 'text-slate-900 hover:text-slate-700 focus-visible:outline-gold-600 border-b border-slate-900 hover:border-slate-700', + white: + 'text-white hover:text-slate-300 focus-visible:outline-white border-b border-white hover:border-slate-300', + }, } export function Button({ className, ...props }) { @@ -43,7 +49,9 @@ export function Button({ className, ...props }) { ? variantStyles.solid[props.color] : props.variant === 'solidNoRounded' ? variantStyles.solidNoRounded[props.color] - : undefined, + : props.variant === 'link' + ? variantStyles.link[props.color] + : undefined, className, ) diff --git a/src/components/Header.jsx b/src/components/Header.jsx index e5e4d15..7471230 100644 --- a/src/components/Header.jsx +++ b/src/components/Header.jsx @@ -53,18 +53,18 @@ function MobileNavigation() { return ( {({ open }) => } HOME STORY @@ -80,14 +80,14 @@ function MobileNavigation() { export function Header() { return ( -
+
-