diff --git a/src/content/kamil.js b/src/content/kamil.js
index 5ae709e..7abbfdb 100644
--- a/src/content/kamil.js
+++ b/src/content/kamil.js
@@ -378,7 +378,7 @@ export const content_pl = [
type: "workSubSegment",
tabs: 1,
title: "00x097 Trade - Platforma analizy technicznej krypto & stock market z detekcją wzorców harmonicznych",
- description: "Zaprojektowałem i zbudowałem pełnostackową platformę do analizy kryptowalut z naciskiem na automatyczną detekcję wzorców harmonicznych i wskaźniki techniczne. Backend oparty na FastAPI z asynchronicznym PostgreSQL (asyncpg), kolejką zadań Celery (RabbitMQ + Redis) oraz integracjami z API Binance, MEXC i Yahoo Finance. Frontend dostarcza interaktywny interfejs wykresów TradingView z poziomami Fibonacciego, wskaźnikami RSI, MACD, OBV oraz panelem wizualizacji wzorców harmonicznych. Wdrożony na Kubernetes (bare metal) z automatycznymi pipeline'ami synchronizacji i analizy.",
+ description: "Zaprojektowałem i zbudowałem pełnostackową platformę do analizy kryptowalut z naciskiem na automatyczną detekcję wzorców harmonicznych i wskaźniki techniczne. Backend oparty na FastAPI z asynchronicznym PostgreSQL (asyncpg), kolejką zadań Celery (RabbitMQ + Redis) oraz integracjami z API Binance, MEXC i Yahoo Finance. Frontend dostarcza interaktywny interfejs wykresów TradingView z poziomami Fibonacciego, wskaźnikami RSI, MACD, OBV oraz panelem wizualizacji wzorców harmonicznych. Wdrożony na Kubernetes (bare metal) z automatycznymi pipeline'ami synchronizacji i analizy. Aplikacja jest dostępna pod adresem: https://00x097.com",
image: "",
branchBorderColor: "rgb(153, 69, 255)",
mainBorderColor: "#ffd748",
@@ -1121,7 +1121,7 @@ export const content_en = [
type: "workSubSegment",
tabs: 1,
title: "00x097 Trade - Stock & Crypto Technical Analysis Platform with Harmonic Pattern Detection",
- description: "Designed and built a full-stack cryptocurrency analysis platform focused on automated harmonic pattern detection and technical indicators. Backend built on FastAPI with async PostgreSQL (asyncpg), Celery task queue (RabbitMQ + Redis), and integrations with Binance, MEXC, and Yahoo Finance APIs. Frontend delivers an interactive TradingView-based charting interface with Fibonacci levels, RSI, MACD, OBV indicators, and a harmonic pattern visualization panel. Deployed on Kubernetes (bare metal) with automated sync and analysis pipelines.",
+ description: "Designed and built a full-stack cryptocurrency analysis platform focused on automated harmonic pattern detection and technical indicators. Backend built on FastAPI with async PostgreSQL (asyncpg), Celery task queue (RabbitMQ + Redis), and integrations with Binance, MEXC, and Yahoo Finance APIs. Frontend delivers an interactive TradingView-based charting interface with Fibonacci levels, RSI, MACD, OBV indicators, and a harmonic pattern visualization panel. Deployed on Kubernetes (bare metal) with automated sync and analysis pipelines. Application is available at: https://00x097.com",
image: "",
branchBorderColor: "rgb(153, 69, 255)",
mainBorderColor: "#ffd748",
diff --git a/src/pages/index.js b/src/pages/index.js
index 83d7c06..06d021d 100644
--- a/src/pages/index.js
+++ b/src/pages/index.js
@@ -4,6 +4,20 @@ import { content_pl } from "../content/kamil"
import { content_en } from "../content/kamil"
import { loadCaptchaEnginge, LoadCanvasTemplate, validateCaptcha } from 'react-simple-captcha'
+const Linkify = ({ text, color }) => {
+ const urlRegex = /(https?:\/\/[^\s,)]+)/g;
+ const parts = text.split(urlRegex);
+ return parts.map((part, i) =>
+ urlRegex.test(part) ? (
+
+ {part}
+
+ ) : (
+ part
+ )
+ );
+};
+
const SimpleCaptchaWrapper = ({ onVerified, language }) => {
const [error, setError] = React.useState(null);
@@ -202,20 +216,20 @@ const SegmentListWork = ({ segment, tabs, borderSize }) => {
>
{
segment.content.length > 0 ?
- segment.title + ":"
+ <>