From 6e18711de9d28b57e6cca767b4d79d360363f923 Mon Sep 17 00:00:00 2001 From: tim Date: Mon, 27 Oct 2025 18:13:02 -0400 Subject: [PATCH] About page --- src/app/about/page.tsx | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index e7cd4b4..2a9e7fb 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -2,19 +2,26 @@ import { useTranslation } from 'react-i18next'; import { Card } from '@/components/ui/card'; +import {useTheme} from "next-themes"; +import {useState} from "react"; export default function AboutPage() { const { t } = useTranslation(); + const { theme, setTheme } = useTheme(); + const logoSrc = theme === 'dark' ? '/logo-dark.svg' : '/logo-light.svg'; + return (
{/* Header */}
-

- Liquidity Party -

+ Liquidity Party Logo

- Multi-asset AMM based on Party Game Theory. + Multi-asset AMM based on Party Game Theory