import React from "react";
import type { Metadata } from "next";
import { generatePageMetadata } from "@/lib/metadataUtils";
import Footer from "@/components/Footer";
import LiveCCTVPage from "@/components/LiveCCTVPage";

export async function generateMetadata(): Promise<Metadata> {
  return await generatePageMetadata("/services/examination/live-cctv");
}

export default function LiveCCTV() {
  return (
    <React.Fragment>
      <LiveCCTVPage />
      <Footer/>
    </React.Fragment>
  );
}
