aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/docs/components/Tweet.tsx
diff options
context:
space:
mode:
author简律纯 <i@jyunko.cn>2023-11-03 21:13:33 +0800
committer简律纯 <i@jyunko.cn>2023-11-03 21:13:33 +0800
commit9f0d43fe099a95ab1516ae951dcb60a89e76a5a5 (patch)
tree51614fe47bff8bb11028a07d4a35c34c9ff6594a /docs/components/Tweet.tsx
parent8f135707d069c900e055dae71e69909d6b9a41bb (diff)
downloadHydroRoll-9f0d43fe099a95ab1516ae951dcb60a89e76a5a5.tar.gz
HydroRoll-9f0d43fe099a95ab1516ae951dcb60a89e76a5a5.zip
chore: delete useless codes
Diffstat (limited to 'docs/components/Tweet.tsx')
-rw-r--r--docs/components/Tweet.tsx46
1 files changed, 0 insertions, 46 deletions
diff --git a/docs/components/Tweet.tsx b/docs/components/Tweet.tsx
deleted file mode 100644
index e5ac388..0000000
--- a/docs/components/Tweet.tsx
+++ /dev/null
@@ -1,46 +0,0 @@
-import Image from "next/image";
-
-function TweetLink({ href, children }) {
- return (
- <a
- href={href}
- target="_blank"
- rel="noopener noreferrer"
- className="inline-block text-[#35ACDF]"
- >
- {children}
- </a>
- );
-}
-
-export function Mention({ children }) {
- return (
- <TweetLink href={`https://twitter.com/${children.replace("@", "")}`}>
- {children}
- </TweetLink>
- );
-}
-
-export default function Tweet({ url, username, name, avatar, date, children }) {
- return (
- <div className="flex p-4 bg-white rounded-md shadow-xl dark:bg-opacity-10">
- <div className="flex-shrink-0 mr-4">
- <Image
- className="w-12 h-12 rounded-full"
- width={42}
- height={42}
- src={avatar}
- alt={`${name} twitter avatar`}
- />
- </div>
- <div>
- <div className="flex items-center space-x-1 text-sm">
- <h4 className="font-medium dark:text-white">{name}</h4>
- <div className="truncate dark:text-gray-400">@{username}</div>
- <div className="dark:text-gray-500 md:hidden xl:block">• {date}</div>
- </div>
- <div className="mt-1 text-sm dark:text-gray-200">{children}</div>
- </div>
- </div>
- );
-}