Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8b07736489 | |||
| c00df2acd7 | |||
| 9174fb7ee3 |
@@ -1,54 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Montserrat } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "@/styles/globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const montserrat = Montserrat({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-montserrat", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Patient Discharge Guide - Post-Acute Care Made Simple", description: "Plain-language guide to post-acute care options for elderly patients and families. Understand SNF, home health, assisted living, and more without medical jargon.", keywords: "discharge planning, post-acute care, SNF, home health, elderly care, plain language healthcare", metadataBase: new URL("https://dischargeguide.com"),
|
title: "Discharge Guide | Understanding Your Post-Acute Care Options", description: "Clear, plain-language guidance for patients and families navigating hospital discharge and post-acute care decisions."};
|
||||||
alternates: {
|
|
||||||
canonical: "https://dischargeguide.com"
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Understanding Your Discharge: A Guide for You and Your Family", description: "Clear, compassionate guidance on post-acute care options in plain language. Perfect for seniors and families.", url: "https://dischargeguide.com", siteName: "Discharge Guide", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/people-work-wearing-medical-masks_23-2148961717.jpg", alt: "Family discussing discharge planning with healthcare provider"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
type: "website"
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Plain-Language Patient Discharge Guide", description: "Understand post-acute care options without the medical jargon. For seniors and families.", images: ["http://img.b2bpic.net/free-photo/people-work-wearing-medical-masks_23-2148961717.jpg"]
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1416,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -92,7 +92,7 @@ export default function LandingPage() {
|
|||||||
<div id="features" data-section="features">
|
<div id="features" data-section="features">
|
||||||
<FeatureBento
|
<FeatureBento
|
||||||
title="Understanding Your Care Options"
|
title="Understanding Your Care Options"
|
||||||
description="After hospital discharge, you have several care pathways. Here's what each one means in plain language, with real-world analogies to help you understand."
|
description="Use this framework to understand which pathway matches your recovery needs. After hospital discharge, you have several care pathways. Here's what each one means in plain language, with real-world analogies to help you understand."
|
||||||
tag="Plain Language Explained"
|
tag="Plain Language Explained"
|
||||||
tagIcon={Lightbulb}
|
tagIcon={Lightbulb}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
|
|||||||
Reference in New Issue
Block a user