About the author
++
diff --git a/src/app/(public)/blogs/(posts)/about-the-author.mdx b/src/app/(public)/blogs/(posts)/about-the-author.mdx new file mode 100644 index 0000000..96f041e --- /dev/null +++ b/src/app/(public)/blogs/(posts)/about-the-author.mdx @@ -0,0 +1 @@ +[@joulev](https://github.com/joulev) is a lead Next.js developer at his company. He has also been one of the most active helpers in the [Next.js official Discord server](https://nextjs-forum.com), and is (as of 4 June 2024) among top 100 of [all-time Next.js contributors](https://github.com/vercel/next.js/graphs/contributors). diff --git a/src/app/(public)/blogs/(posts)/client-components.tsx b/src/app/(public)/blogs/(posts)/client-components.tsx index e26c3e7..cfd4766 100644 --- a/src/app/(public)/blogs/(posts)/client-components.tsx +++ b/src/app/(public)/blogs/(posts)/client-components.tsx @@ -4,12 +4,11 @@ import { usePathname } from "next/navigation"; import { useEffect } from "react"; import { Balancer } from "react-wrap-balancer"; -import { CopyButton } from "~/components/copy-button"; -import { Check, Share } from "~/components/icons"; import { Link } from "~/components/ui/link"; import { incrementViews } from "~/lib/blogs/increment-view"; import { formatTime } from "~/lib/blogs/utils"; +import { useHoverBackground } from "~/components/ui/hooks/use-hover-background"; import { meta } from "../meta"; function useMetadata() { @@ -33,11 +32,34 @@ export function PostedDate() { const { postedDate } = useMetadata(); const publishedTime = new Date(postedDate); return ( -