Impl of Language selection and more #11

Merged
latenightdef merged 24 commits from mrrpmeowfurry/fifty-shades-of-bully:main into develop 2025-06-25 19:26:22 +00:00
Showing only changes of commit c105f98d46 - Show all commits

View file

@ -28,8 +28,12 @@ function languageSelection() {
gap: '1rem',
marginTop: '1rem'
}}>
<BlackButton text="ภาษาไทย" to='/introduction'/>
<BlackButton text="English" to='/introduction'/>
<BlackButton text="ภาษาไทย" to='/name' onClick={(e) => {
setLang("Thai");
}}/>
<BlackButton text="English" to='/name' onClick={(e) => {
setLang("English");
}}/>
</div>
</div>
);