18 lines
453 B
JavaScript
18 lines
453 B
JavaScript
import Layout from "@/components/layout/Layout";
|
|
import ShortcodesClient from "../shortcodes/ShortcodesClient";
|
|
|
|
export const metadata = {
|
|
title: "Shortcodes - rapharehab",
|
|
description:
|
|
"Explore all available shortcodes for Rapha Rehab Clinic, including icon lists, care steps, team members, testimonials, and interactive content.",
|
|
};
|
|
|
|
export default function ShortcodesPage() {
|
|
return (
|
|
<>
|
|
|
|
<ShortcodesClient />
|
|
</>
|
|
);
|
|
}
|