Skip to content

Commit

Permalink
Merge pull request #132 from times-yasunori/yasunori-yasunorised
Browse files Browse the repository at this point in the history
Yasunorized  Yasunori
  • Loading branch information
tomoya authored Oct 17, 2024
2 parents f2115b6 + ed8dd99 commit 84e6c4a
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 1 deletion.
15 changes: 14 additions & 1 deletion packages/web/app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import {
} from "@remix-run/react";
import "@mantine/core/styles.css";
import { useDisclosure, useHeadroom } from "@mantine/hooks";
import { motion } from "framer-motion";
import IconGitHubLogo from "~icons/tabler/brand-github";
import IconGraph from "~icons/tabler/graph";
import { YasunoriSpotlight } from "./components/yasunori-spotlight";
Expand Down Expand Up @@ -107,7 +108,19 @@ export function Layout({ children }: { children: React.ReactNode }) {
fontWeight: 400,
}}
>
Awesome Yasunori
Awesome
<motion.span
style={{ marginLeft: em(2) }}
initial={{ opacity: 1 }}
animate={{ opacity: [1, 0, 1] }}
transition={{
duration: 10,
ease: "easeInOut",
repeat: Number.POSITIVE_INFINITY,
}}
>
Yasunori
</motion.span>
</Button>
</Group>
<Group gap="sm">
Expand Down
1 change: 1 addition & 0 deletions packages/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"@remix-run/cloudflare": "^2.13.1",
"@remix-run/cloudflare-pages": "^2.13.1",
"@remix-run/react": "^2.13.1",
"framer-motion": "^11.11.9",
"hono": "^4.6.4",
"isbot": "^5.1.17",
"react": "^18.2.0",
Expand Down
24 changes: 24 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 84e6c4a

Please sign in to comment.