17 lines
464 B
JavaScript
17 lines
464 B
JavaScript
import Layout from "@/components/layout/Layout";
|
||
import ShortcodesClient from "../shortcodes/ShortcodesClient";
|
||
|
||
export const metadata = {
|
||
title: "Rapharehab Shortcodes - Helpful Service Snippets",
|
||
description:
|
||
"Explore Rapharehab’s service snippets: FAQs, payment & insurance, areas of injury, and more - quick access to key info in one place.",
|
||
};
|
||
|
||
export default function ShortcodesPage() {
|
||
return (
|
||
<>
|
||
<ShortcodesClient />
|
||
</>
|
||
);
|
||
}
|