diff --git a/nextcore/index.html b/nextcore/index.html new file mode 100644 index 0000000..3f61a35 --- /dev/null +++ b/nextcore/index.html @@ -0,0 +1,22 @@ + + + + + + + + Folium | Next Core + + + + + + + + + +
+ + + + \ No newline at end of file diff --git a/src/Checklist/Checklist.tsx b/src/Checklist/Checklist.tsx index 99affae..1389e43 100644 --- a/src/Checklist/Checklist.tsx +++ b/src/Checklist/Checklist.tsx @@ -1,9 +1,12 @@ import '@mantine/core/styles.css'; import { + Checkbox, Container, Divider, MantineProvider, + SimpleGrid, Space, + Text, Title } from '@mantine/core'; import { theme } from '../theme'; @@ -25,10 +28,40 @@ export default function Checklist() { Cores + + Cytrus + + + Nintendo 3DS, Nintendo New 3DS + + + + + + + + + + Grape + + + + Nintendo DS, Nintendo DSi + + + + + + Mango + + + + Super Nintendo Entertainment System + ); diff --git a/src/NextCore/NextCore.tsx b/src/NextCore/NextCore.tsx new file mode 100644 index 0000000..2dda207 --- /dev/null +++ b/src/NextCore/NextCore.tsx @@ -0,0 +1,28 @@ +import '@mantine/core/styles.css'; +import { + Button, + Container, + Flex, + MantineProvider +} from '@mantine/core'; +import { theme } from '../theme'; + +export default function NextCore() { + const date = new Date(); + + function play() { + new Audio("https://quicksounds.com/uploads/tracks/528054973_948104858_1761723949.mp3").play() + } + + return ( + = 7 && date.getHours() <= 19 ? "light" : "dark"}> + + + + + + + ); +} \ No newline at end of file diff --git a/src/NextCore/nextcore_main.tsx b/src/NextCore/nextcore_main.tsx new file mode 100644 index 0000000..576e9cc --- /dev/null +++ b/src/NextCore/nextcore_main.tsx @@ -0,0 +1,9 @@ +import React from 'react'; +import ReactDOM from 'react-dom/client'; +import NextCore from './NextCore.tsx'; + +ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render( + + + +); diff --git a/vite.config.ts b/vite.config.ts index 5783d64..7fc3b87 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -15,7 +15,8 @@ export default defineConfig({ input: { index: resolve(__dirname, 'index.html'), privacypolicy: resolve(__dirname, 'privacypolicy/index.html'), - checklist: resolve(__dirname, 'checklist/index.html') + checklist: resolve(__dirname, 'checklist/index.html'), + nextcore: resolve(__dirname, 'nextcore/index.html') } } }