Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-06 18:54:04 +00:00
2 changed files with 8 additions and 43 deletions

View File

@@ -1,54 +1,20 @@
import type { Metadata } from "next";
import { Montserrat } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "@/styles/globals.css";
const montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
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"),
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
}
};
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."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${montserrat.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -92,7 +92,7 @@ export default function LandingPage() {
<div id="features" data-section="features">
<FeatureBento
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"
tagIcon={Lightbulb}
tagAnimation="slide-up"