Skip to content

Commit

Permalink
Use waving hand logo
Browse files Browse the repository at this point in the history
  • Loading branch information
venables committed Jul 29, 2023
1 parent 56abf98 commit 85751e3
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 5 deletions.
Binary file modified app/apple-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/favicon.ico
Binary file not shown.
Binary file modified app/icon1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/icon2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/icon3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/icon4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions components/icons/brand/Logo.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { FanIcon, type LucideProps } from "lucide-react"
import type { HTMLProps } from "react"

type LogoProps = LucideProps
type LogoProps = HTMLProps<HTMLSpanElement>

export function Logo(props: LogoProps) {
return <FanIcon {...props} />
return <span {...props}>👋</span>
}
2 changes: 1 addition & 1 deletion components/marketing/layout/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export function Header({ user }: Props) {
href="/"
className="group flex items-center space-x-2 transition-colors hover:animate-pulse hover:text-zinc-800 dark:hover:text-zinc-200"
>
<Logo className="transition-transform group-hover:animate-spin" />
<Logo className="transition-transform group-hover:animate-wiggle" />
<span className="hidden text-lg font-bold sm:inline-block">
{siteConfig.name}
</span>
Expand Down
10 changes: 9 additions & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,19 @@ module.exports = {
"accordion-up": {
from: { height: "var(--radix-accordion-content-height)" },
to: { height: 0 }
},
wiggle: {
"0%, 60%, 100%": { transform: "rotate( 0.0deg)" },
"10%, 30%": { transform: "rotate(14.0deg)" },
"20%": { transform: "rotate(-8.0deg)" },
"40%": { transform: "rotate(-4.0deg)" },
"50%": { transform: "rotate(10.0deg)" }
}
},
animation: {
"accordion-down": "accordion-down 0.2s ease-out",
"accordion-up": "accordion-up 0.2s ease-out"
"accordion-up": "accordion-up 0.2s ease-out",
wiggle: "wiggle 1s linear infinite"
},
fontFamily: {
sans: ["var(--font-inter)", ...fontFamily.sans]
Expand Down

1 comment on commit 85751e3

@vercel
Copy link

@vercel vercel bot commented on 85751e3 Jul 29, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.