// © XlXi 2021 // Graphictoria 5 import React from "react"; import { ConstructTime } from "../../Helpers/Date.js" function scrollTo(scrollElement) { window.scrollTo(0, document.getElementById(scrollElement).offsetTop - 70); } /* Date can be calculated with this script: var rn = new Date(); console.log(rn.getTime() - (rn.getTimezoneOffset() * 60 * 1000)); */ const Legal = (props) => { var ClientDate = new Date(); var LastModifiedDate = new Date(props.lastModified + (ClientDate.getTimezoneOffset() * 60 * 1000)); return (

{ props.name }

There are { props.sections.length } sections on this page, you can use the buttons below to navigate. This page will { props.purpose }.

{ props.sections.map( (section, index) => (

{ section.title }

{ section.content }
) ) }
Effective as of { ConstructTime(LastModifiedDate) }
Graphictoria administrators will NEVER ask for your password. Your password is for you and you only to know.
); } export { Legal };