From f36ccf7bdcf825f3b9b23ec5277279523fc97e21 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Wed, 10 Sep 2025 16:16:08 +0200 Subject: [PATCH] Fix colors --- web/components/home/home.tsx | 20 +- web/components/love-page.tsx | 2 +- web/components/nav/love-bottom-nav-bar.tsx | 3 +- web/styles/globals.css | 330 +++++++++++---------- web/tailwind.config.js | 2 +- 5 files changed, 183 insertions(+), 174 deletions(-) diff --git a/web/components/home/home.tsx b/web/components/home/home.tsx index 6c304a95..323a968a 100644 --- a/web/components/home/home.tsx +++ b/web/components/home/home.tsx @@ -1,7 +1,6 @@ import {useEffect} from "react"; import {Col} from "web/components/layout/col"; -import {Button} from "web/components/buttons/button"; -import {signupRedirect} from "web/lib/util/signup"; +import {SignUpButton} from "web/components/nav/love-sidebar"; export function AboutBox(props: { title: string @@ -48,18 +47,15 @@ export function LoggedOutHome() { return ( <> - + text="Sign up" + /> {/**/}

+ className="pt-12 pb-2 text-7xl md:text-8xl xs:text-6xl font-extrabold leading-tight xl:whitespace-nowrap md:whitespace-nowrap text-center"> Don't Swipe.
| @@ -67,9 +63,9 @@ export function LoggedOutHome() {

- A focused platform for real connections—built with purpose and speed. + Find people who share your values, not just your photos.

-
+
diff --git a/web/components/love-page.tsx b/web/components/love-page.tsx index e863bad6..2d5b02db 100644 --- a/web/components/love-page.tsx +++ b/web/components/love-page.tsx @@ -99,7 +99,7 @@ export function LovePage(props: { const Profiles = { name: 'Profiles', href: '/', icon: SolidHomeIcon }; const ProfilesHome = { name: 'Profiles', href: '/', icon: HomeIcon }; -const faq = { name: 'FAQ', href: '/md/faq', icon: QuestionMarkCircleIcon }; +const faq = { name: 'FAQ', href: '/faq', icon: SolidQuestionIcon }; const About = { name: 'About', href: '/about', icon: SolidQuestionIcon }; const AboutQuestionMark = { name: 'About', href: '/about', icon: QuestionMarkCircleIcon }; const Signin = { name: 'Sign in', href: '/signin', icon: UserCircleIcon }; diff --git a/web/components/nav/love-bottom-nav-bar.tsx b/web/components/nav/love-bottom-nav-bar.tsx index 41bee5ba..daead855 100644 --- a/web/components/nav/love-bottom-nav-bar.tsx +++ b/web/components/nav/love-bottom-nav-bar.tsx @@ -149,8 +149,7 @@ function NavBarItem(props: { } const currentBasePath = '/' + (currentPage?.split('/')[1] ?? '') - const isCurrentPage = - item.href != null && currentBasePath === item.href.split('?')[0] + const isCurrentPage = currentBasePath === item.href.split('?')[0] return (