diff --git a/app/globals.css b/app/globals.css index b986fed..18969f5 100644 --- a/app/globals.css +++ b/app/globals.css @@ -3,15 +3,8 @@ @tailwind utilities; :root { - --background: #ffffff; - --foreground: #171717; -} - -@media (prefers-color-scheme: dark) { - :root { - --background: #0a0a0a; - --foreground: #ededed; - } + --background: #0f172a; + --foreground: #e2e8f0; } body { diff --git a/app/layout.tsx b/app/layout.tsx index 6a08971..66d3420 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,8 +1,6 @@ import type { Metadata } from 'next' import localFont from 'next/font/local' import './globals.css' -import { Header } from '@/components/Header' -import { EcosystemFooter } from '@/components/EcosystemFooter' const geistSans = localFont({ src: './fonts/GeistVF.woff', @@ -19,7 +17,7 @@ export const metadata: Metadata = { title: 'rFunds - Threshold-Based Flow Funding', description: 'Design, simulate, and share continuous funding flows with threshold-based mechanisms. Create interconnected funding funnels with overflow routing and outcome tracking.', icons: { - icon: "data:image/svg+xml,πŸ’Έ", + icon: "data:image/svg+xml,πŸ“Š", }, openGraph: { title: 'rFunds - Threshold-Based Flow Funding', @@ -36,13 +34,8 @@ export default function RootLayout({ }>) { return ( - -