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 (
- Multi-asset AMM based on Party Game Theory. + Multi-asset AMM based on Party Game Theory