diff --git a/app/globals.css b/app/globals.css index 12acd27e..82df4ed5 100644 --- a/app/globals.css +++ b/app/globals.css @@ -7,12 +7,12 @@ --foreground: #171717; } -@media (prefers-color-scheme: dark) { - :root { - --background: #0a0a0a; - --foreground: #ededed; - } -} +/*@media (prefers-color-scheme: dark) {*/ +/* :root {*/ +/* --background: #0a0a0a;*/ +/* --foreground: #ededed;*/ +/* }*/ +/*}*/ body { color: var(--foreground); @@ -21,8 +21,12 @@ body { } html, body { - background-color: #ffffff; - color: #111111; /* for dark text */ + background-color: var(--background); + color: var(--foreground); margin: 0; padding: 0; } + +a { + color: cornflowerblue; +} diff --git a/app/learn-more/page.tsx b/app/learn-more/page.tsx index 1db5183a..425cd655 100644 --- a/app/learn-more/page.tsx +++ b/app/learn-more/page.tsx @@ -5,7 +5,40 @@ export default function LearnMorePage() {

About BayesBond

-

...

+

Abstract

+

Forming and maintaining close connections is fundamental for most people’s mental health—and hence overall + well-being. However, currently available meeting platforms, lacking transparency and searchability, are + deeply failing to bring together thoughtful people. This article lays the path for a platform designed to + foster close friendships and relationships for people who prioritize learning, curiosity, and critical + thinking. The directory of users will be fully transparent and each profile will contain extensive + information, allowing searches over all users through powerful filtering and sorting methods. To prevent any + value drift from this pro-social mission, the platform will always be free, ad-free, not for profit, + donation-supported, open source, and democratically governed. The goal of this article is to better + understand the community needs, as well as to gather feedback and collaboration for the suggested + implementation.

+

How to Help

+
Give Suggestions or Contribute
+

Give suggestions or show your inclination to contribute through this form!

+
Join Chats
+

You can join the community on Slack or Discord to shape and test the product—or just to chat with + like-minded people.

+
Share
+

Share the idea and article with people who identify with the community values and may benefit from the + product.

+ +

You can already donate to support the initial infrastructure via PayPal or GitHub (GitHub has increased transparency, but requires + an account).

+
GitHub repo
+

Where all the source code and instructions for development are: https://github.com/BayesBond/BayesBond

+

Full article here

+
); diff --git a/app/page.tsx b/app/page.tsx index 22addb12..b94f4ca8 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -8,7 +8,16 @@ export default function HomePage() {
{/* Header */}
- + + +
{/* Hero Section */} @@ -31,7 +40,20 @@ export default function HomePage() { {/* Footer */}
); diff --git a/package.json b/package.json index e395dea0..919d239a 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "private": true, "scripts": { "dev": "next dev --turbopack", - "build": "npx prisma migrate deploy || [ \"$DATABASE_URL\" = \"prisma+postgres://accelerate.prisma-data.net/?api_key=API_KEY\" ] && next build", + "build": "npx prisma migrate deploy && next build", "start": "next start", "lint": "next lint", "postinstall": "npx prisma generate --no-engine"