5 Commits

Author SHA1 Message Date
e82118468f Update src/app/page.tsx 2026-03-04 08:03:35 +00:00
1fd4b5c0a4 Update src/app/layout.tsx 2026-03-04 08:03:35 +00:00
f6f555ba4c Merge version_1 into main
Merge version_1 into main
2026-03-04 07:57:33 +00:00
73f0bbb983 Merge version_1 into main
Merge version_1 into main
2026-03-04 07:56:33 +00:00
b70c740b61 Merge version_1 into main
Merge version_1 into main
2026-03-04 07:55:15 +00:00
2 changed files with 8 additions and 32 deletions

View File

@@ -1,43 +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 "./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: "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: { title: "TherapyFlow - Sports Therapy & Rehabilitation", description: "Expert sports therapy and rehabilitation designed to get you back to peak performance."};
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."},
};
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: `
@@ -1405,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

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