@@ -11,12 +11,12 @@ import {
1111import NeuromancerHUD from './about-views/NeuromancerHUD' ;
1212import SystemArchitecture from './about-views/SystemArchitecture' ;
1313import MindMapConstellation from './about-views/MindMapConstellation' ;
14- import SimpleText from './about-views/SimpleText ' ;
14+ import ClassifiedDossier from './about-views/ClassifiedDossier ' ;
1515import { useAchievements } from '../context/AchievementContext' ;
1616
1717const ViewSwitcher = ( { currentView, setView } ) => {
1818 const views = [
19- { id : 'simple ' , icon : Article , label : 'Simple ' } ,
19+ { id : 'dossier ' , icon : Article , label : 'Dossier ' } ,
2020 { id : 'hud' , icon : Terminal , label : 'Terminal' } ,
2121 { id : 'blueprint' , icon : TreeStructure , label : 'Blueprint' } ,
2222 { id : 'map' , icon : Graph , label : 'Mind Map' } ,
@@ -49,7 +49,7 @@ const ViewSwitcher = ({ currentView, setView }) => {
4949} ;
5050
5151const AboutPage = ( ) => {
52- const [ view , setView ] = useState ( 'simple ' ) ;
52+ const [ view , setView ] = useState ( 'dossier ' ) ;
5353 const { unlockAchievement } = useAchievements ( ) ;
5454
5555 useEffect ( ( ) => {
@@ -63,8 +63,8 @@ const AboutPage = () => {
6363
6464 const getButtonStyle = ( currentView ) => {
6565 switch ( currentView ) {
66- case 'simple ' :
67- return 'bg-transparent text-black border-black border-2 font-mono uppercase tracking-widest text-xs hover:bg-[#4a0404] hover:text-white hover:border-[#4a0404] rounded-none shadow-none' ;
66+ case 'dossier ' :
67+ return 'bg-white text-black border-black border-2 font-mono uppercase tracking-widest text-xs hover:bg-[#4a0404] hover:text-white hover:border-[#4a0404] rounded-none shadow-none' ;
6868 case 'hud' :
6969 return 'bg-black text-green-500 border-green-500 border font-mono tracking-wider hover:bg-green-500 hover:text-black shadow-[0_0_10px_rgba(0,255,0,0.3)] rounded-sm' ;
7070 case 'blueprint' :
@@ -101,12 +101,12 @@ const AboutPage = () => {
101101 animate = { { opacity : 1 } }
102102 exit = { { opacity : 0 } }
103103 transition = { { duration : 0.5 } }
104- className = "w-full h-full"
104+ className = "w-full h-full overflow-y-auto "
105105 >
106106 { view === 'hud' && < NeuromancerHUD /> }
107107 { view === 'blueprint' && < SystemArchitecture /> }
108108 { view === 'map' && < MindMapConstellation /> }
109- { view === 'simple ' && < SimpleText /> }
109+ { view === 'dossier ' && < ClassifiedDossier /> }
110110 </ motion . div >
111111 </ AnimatePresence >
112112
0 commit comments