Files
landing/app/layout.tsx
Jason Woltje b8ba61565e Initial landing page for SagePHR
- Hero section with clear value prop
- Problem/solution framing
- Feature grid
- Pricing section (early adopter /mo)
- Email waitlist signup (Formspree)
- Responsive design
- Dark theme with sage green accent
2026-03-03 12:24:43 -06:00

21 lines
589 B
TypeScript

import type { Metadata } from 'next'
export const metadata: Metadata = {
title: 'SagePHR - Your Health Records, Finally Under Your Control',
description: 'Stop hunting for medical records. Start owning your health history. One secure place for all your medical records with AI-powered insights.',
}
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body style={{ margin: 0, fontFamily: '-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif' }}>
{children}
</body>
</html>
)
}