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
This commit is contained in:
20
app/layout.tsx
Normal file
20
app/layout.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user