Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-04 08:03:40 +00:00
2 changed files with 8 additions and 32 deletions

View File

@@ -1,43 +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";
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: "TherapyFlow - Sports Therapy & Rehabilitation", description: "Expert sports therapy and rehabilitation services. Recover stronger with personalized treatment plans from certified professionals. 98% patient satisfaction.", keywords: "sports therapy, physical therapy, rehabilitation, injury recovery, sports medicine, athletic training", robots: {
index: true,
follow: true,
},
openGraph: {
title: "TherapyFlow - Sports Therapy & Rehabilitation", description: "Expert sports therapy and rehabilitation services designed to get you back to peak performance.", url: "https://therapyflow.com", siteName: "TherapyFlow", type: "website"},
twitter: {
card: "summary_large_image", title: "TherapyFlow - Sports Therapy & Rehabilitation", description: "Expert sports therapy and rehabilitation services. Recover stronger with certified professionals."},
};
title: "TherapyFlow - Sports Therapy & Rehabilitation", description: "Expert sports therapy and rehabilitation designed to get you back to peak performance."};
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: `
@@ -1405,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -50,7 +50,7 @@ export default function LandingPage() {
tag="Sports Therapy"
tagIcon={Activity}
buttons={[
{ text: "Book Consultation", href: "#contact" },
{ text: "Start Your Recovery", href: "#contact" },
{ text: "Learn More", href: "#features" },
]}
imageSrc="http://img.b2bpic.net/free-photo/doctor-helping-patient-rehabilitation_23-2150321628.jpg"
@@ -232,4 +232,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}