Skip to content

Latest commit

 

History

History
60 lines (59 loc) · 2.41 KB

index.md

File metadata and controls

60 lines (59 loc) · 2.41 KB
layout title hide
default
Nighthawk Resources
true
Nighthawk flying

WELCOME TO

NIGHTHAWK RESOURCES


Like Canvas, but BETTER

  • ANYONE can create classes and assignments!
  • An inbox system allowing communication between users!
  • AP Statistics graphing features (no more Stapplet)!
  • Additional stats features that Stapplet doesn't have! (Probability visualization, sharing graphs)
  • QR Code generators for AP Statistics surveys!
  • Image recognition for digital data sets!
  • Text Editor and AI Detection!
  • Light Mode and Dark Mode!
  • Random table generator
Nighthawk grinning
<script> window.onload = (event) => { console.log("Page is fully loaded"); let DarkMode = localStorage.getItem('DarkMode'); DarkMode = (DarkMode === 'true'); // Convert to boolean console.log(DarkMode); if (DarkMode) { document.body.classList.add('dark'); document.body.classList.remove('light'); } else { document.body.classList.add('light'); document.body.classList.remove('dark'); } }; </script>