18 lines
471 B
JavaScript
18 lines
471 B
JavaScript
import Layout from "@/components/layout/Layout";
|
||
import ShortcodesClient from "../shortcodes/ShortcodesClient";
|
||
|
||
export const metadata = {
|
||
title: "Rapha Rehab Shortcodes - Helpful Service Snippets",
|
||
description:
|
||
"Explore Rapha Rehab’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 />
|
||
</>
|
||
);
|
||
}
|