Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e82118468f | |||
| 1fd4b5c0a4 | |||
| f6f555ba4c | |||
| 73f0bbb983 | |||
| b70c740b61 |
@@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user