import React, { useEffect, useRef } from "react"; import type { Nullable } from "@/types"; import { Helmet } from "react-helmet"; import * as styles from "./Page.module.scss"; interface Props { title?: string; children: React.ReactNode; } const Page: React.FC = ({ title, children }: Props) => { const pageRef = useRef>(null); useEffect(() => { if (pageRef.current) { pageRef.current.scrollIntoView(); } }, []); return ( <>
{title &&

{title}

}
{children}
); }; export default Page;