Sessions 5-7a: 955 tests, deployment ready

This commit is contained in:
Kev
2026-06-08 18:35:13 -04:00
parent 06b82624a2
commit 1fa04dc776
371 changed files with 49366 additions and 955 deletions
+92 -23
View File
@@ -1,14 +1,83 @@
import type { Metadata } from 'next';
import type { Metadata, Viewport } from 'next';
import PostHogProvider from '@/components/PostHogProvider';
import AuthProvider from '@/contexts/AuthContext';
import ParlayProvider from '@/contexts/ParlayContext';
import ExplainModeProvider from '@/contexts/ExplainModeContext';
import Nav from '@/components/Nav';
import ParlayTray from '@/components/ParlayTray';
import BottomTabBar from '@/components/BottomTabBar';
import InstallPrompt from '@/components/InstallPrompt';
import PushPrompt from '@/components/PushPrompt';
import MFAPrompt from '@/components/MFAPrompt';
import MFAChallenge from '@/components/MFAChallenge';
import './globals.css';
export const metadata: Metadata = {
title: 'BetonBLK — AI-Powered Parlay Intelligence',
description: 'Stop guessing. Start grading. BetonBLK scans your parlay in seconds with AI-powered prop analysis across DraftKings, FanDuel, and BetMGM.',
metadataBase: new URL(process.env.NEXT_PUBLIC_SITE_URL || 'https://vyndr.app'),
title: {
default: 'VYNDR — Sports Prop Intelligence',
template: '%s · VYNDR',
},
description:
"Grade NBA, MLB, and WNBA props with intelligence the books don't want you to have. Built in Detroit.",
applicationName: 'VYNDR',
authors: [{ name: 'VYNDR', url: 'https://vyndr.app' }],
manifest: '/manifest.json',
keywords: [
'sports prop grading',
'NBA prop bet analysis',
'MLB prop intelligence',
'WNBA prop grading',
'parlay correlation analysis',
'prop betting tools',
],
openGraph: {
title: 'BetonBLK — AI-Powered Parlay Intelligence',
description: 'Stop guessing. Start grading.',
title: "VYNDR — Intelligence the books don't want you to have",
description:
'Read player props with Bayesian intelligence. See the factors. Know the kill conditions. Take the edge back.',
url: 'https://vyndr.app',
siteName: 'VYNDR',
images: [{ url: '/og-image.png', width: 1200, height: 630, alt: 'VYNDR — Sports Prop Intelligence' }],
type: 'website',
},
twitter: {
card: 'summary_large_image',
title: 'VYNDR',
description: 'The books have every advantage. We built this to give it back.',
images: ['/og-image.png'],
creator: '@getvyndr',
},
icons: {
icon: [
{ url: '/favicon.svg', type: 'image/svg+xml' },
{ url: '/favicon.ico', sizes: '32x32' },
{ url: '/favicon-32.png', sizes: '32x32', type: 'image/png' },
{ url: '/favicon-16.png', sizes: '16x16', type: 'image/png' },
],
apple: '/apple-touch-icon.png',
},
appleWebApp: {
capable: true,
statusBarStyle: 'black-translucent',
title: 'VYNDR',
},
robots: {
index: true,
follow: true,
googleBot: {
index: true,
follow: true,
'max-image-preview': 'large',
'max-snippet': -1,
},
},
};
export const viewport: Viewport = {
themeColor: '#06060B',
width: 'device-width',
initialScale: 1,
maximumScale: 5,
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
@@ -18,27 +87,27 @@ export default function RootLayout({ children }: { children: React.ReactNode })
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="anonymous" />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap"
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600;700;800&family=Instrument+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;700;800&display=swap"
rel="stylesheet"
/>
</head>
<body className="min-h-screen antialiased">
<nav className="fixed top-0 w-full z-50 border-b border-[var(--border)] bg-[var(--bg)]/80 backdrop-blur-md">
<div className="max-w-6xl mx-auto px-4 h-16 flex items-center justify-between">
<a href="/" className="font-mono font-bold text-xl tracking-tight">
Beton<span className="text-[var(--accent)]">BLK</span>
</a>
<div className="flex items-center gap-6 text-sm">
<a href="/blog" className="text-[var(--text-muted)] hover:text-white transition">Blog</a>
<a href="/scan" className="text-[var(--text-muted)] hover:text-white transition">Scan</a>
<a href="/tracker" className="text-[var(--text-muted)] hover:text-white transition">Tracker</a>
<a href="/login" className="px-4 py-2 rounded-lg bg-[var(--accent)] text-white text-sm font-medium hover:opacity-90 transition">
Log In
</a>
</div>
</div>
</nav>
<main className="pt-16">{children}</main>
<body className="antialiased tex-grain">
<PostHogProvider>
<AuthProvider>
<ExplainModeProvider>
<ParlayProvider>
<Nav />
<main style={{ paddingTop: 64, minHeight: '100vh', paddingBottom: 80 }}>{children}</main>
<ParlayTray />
<BottomTabBar />
<InstallPrompt />
<PushPrompt />
<MFAPrompt />
<MFAChallenge />
</ParlayProvider>
</ExplainModeProvider>
</AuthProvider>
</PostHogProvider>
</body>
</html>
);