diff --git a/src/NewHome/NewHome.tsx b/src/NewHome/NewHome.tsx index 97ddb12..9007049 100644 --- a/src/NewHome/NewHome.tsx +++ b/src/NewHome/NewHome.tsx @@ -122,8 +122,10 @@ export default function NewHome() { ); }); + const date = new Date(); + return ( - + = 7 && date.getHours() <= 19 ? "light" : "dark"}> diff --git a/src/PrivacyPolicy/PrivacyPolicyMarkdown/PrivacyPolicyMarkdown.tsx b/src/PrivacyPolicy/PrivacyPolicyMarkdown/PrivacyPolicyMarkdown.tsx index 021186d..62344d7 100644 --- a/src/PrivacyPolicy/PrivacyPolicyMarkdown/PrivacyPolicyMarkdown.tsx +++ b/src/PrivacyPolicy/PrivacyPolicyMarkdown/PrivacyPolicyMarkdown.tsx @@ -1,24 +1,29 @@ -import { Container, Space, Text, Title } from "@mantine/core"; +import { Container, MantineProvider, Space, Text, Title } from "@mantine/core"; import classes from './PrivacyPolicyMarkdown.module.css'; +import { theme } from "../../theme"; export function PrivacyPolicyMarkdown() { + const date = new Date(); + return ( - - - Privacy Policy - - - - Folium and its developer take your privacy very seriously. Beyond the information Apple provides to developers that you can decide to provide, it uses no third-party analytics or advertising frameworks. - - - - Folium does have cores that save logs on-device and these can optionally be provided for better assistance in Discord, Reddit, etc. Information within these logs can be but is not limited to device specifications. - - - - © 2024 Jarrod Norwell. All Right Reserved. - - + = 7 && date.getHours() <= 19 ? "light" : "dark"}> + + + Privacy Policy + + + + Folium and its developer take your privacy very seriously. Beyond the information Apple provides to developers that you can decide to provide, it uses no third-party analytics or advertising frameworks. + + + + Folium does have cores that save logs on-device and these can optionally be provided for better assistance in Discord, Reddit, etc. Information within these logs can be but is not limited to device specifications. + + + + © 2024 Jarrod Norwell. All Right Reserved. + + + ) } \ No newline at end of file