diff --git a/components/linkify.tsx b/components/linkify.tsx
new file mode 100644
index 0000000..e8bde12
--- /dev/null
+++ b/components/linkify.tsx
@@ -0,0 +1,33 @@
+import React from 'react';
+
+const URL_REGEX = /(https?:\/\/[^\s]+)/g;
+
+export function Linkify({ children }: { children: React.ReactNode }) {
+ if (typeof children !== 'string') {
+ return <>{children}>;
+ }
+
+ const parts = children.split(URL_REGEX);
+
+ return (
+ <>
+ {parts.map((part, i) => {
+ if (part.match(URL_REGEX)) {
+ return (
+ e.stopPropagation()}
+ >
+ {part}
+
+ );
+ }
+ return
{comment.content}
+ comment.content &&{reply.content}
+ reply.content &&