Skip to content

Commit 29563e5

Browse files
XeTrinityzXeTrinityz
authored andcommitted
Minor UI adjustments
1 parent a9668e3 commit 29563e5

File tree

5 files changed

+31
-5
lines changed

5 files changed

+31
-5
lines changed

website/src/components/HamburgerMenu.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { Link } from 'react-router-dom';
44
const HamburgerMenu = ({ isOpen, toggleMenu }) => {
55
return (
66
<>
7-
{/* Hamburger Button - Highest z-index */}
7+
{/* Hamburger Button*/}
88
<label
99
className={`fixed top-6 ${isOpen ? 'left-[276px]' : 'left-6'} w-10 h-8 block cursor-pointer z-[60] transition-all duration-300`}
1010
onClick={(e) => {
@@ -32,15 +32,15 @@ const HamburgerMenu = ({ isOpen, toggleMenu }) => {
3232
</div>
3333
</label>
3434

35-
{/* Overlay - Lowest z-index */}
35+
{/* Overlay*/}
3636
{isOpen && (
3737
<div
3838
className="fixed inset-0 bg-black/50 z-40"
3939
onClick={toggleMenu}
4040
/>
4141
)}
4242

43-
{/* Menu Panel - Middle z-index */}
43+
{/* Menu Panel*/}
4444
<div
4545
className={`fixed top-0 left-0 h-screen w-72 bg-gray-900/95 backdrop-blur-sm transform transition-transform duration-300 ease-in-out z-50 ${
4646
isOpen ? 'translate-x-0' : '-translate-x-full'

website/src/components/LoadingSpinner.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import { trefoil } from 'ldrs';
33

44
const LoadingSpinner = ({ isLoading }) => {
55
useEffect(() => {
6-
// Register the custom element
76
trefoil.register();
87
}, []);
98

website/src/pages/CommunityCreations.jsx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import React, { useState, useEffect } from 'react';
22
import { Search, Filter, Download, Star, User } from 'lucide-react';
3+
import GradientCustomizer from '../components/GradientCustomizer';
4+
import CustomButtons from '../components/CustomButtons';
35

46
const CommunityGallery = () => {
57
const [searchTerm, setSearchTerm] = useState('');
@@ -192,6 +194,18 @@ const CommunityGallery = () => {
192194
</div>
193195
))}
194196
</div>
197+
{/* Footer */}
198+
<footer className="py-6 sm:py-8 text-center text-gray-400 mt-auto">
199+
<p className="text-xs sm:text-sm">© 2025 That Sky Mod. Not affiliated with thatgamecompany.</p>
200+
</footer>
201+
202+
{/* Controls */}
203+
<div className="fixed bottom-4 right-4 z-50 flex flex-row-reverse gap-4">
204+
<GradientCustomizer />
205+
<div className="h-14">
206+
<CustomButtons.DiscordButton />
207+
</div>
208+
</div>
195209
</div>
196210
</div>
197211
);

website/src/pages/FAQ.jsx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import React, { useState } from 'react';
22
import { ChevronDown } from 'lucide-react';
3+
import GradientCustomizer from '../components/GradientCustomizer';
4+
import CustomButtons from '../components/CustomButtons';
35

46
const FAQPage = () => {
57
const faqs = [
@@ -72,6 +74,18 @@ const FAQPage = () => {
7274
</div>
7375
))}
7476
</div>
77+
{/* Footer */}
78+
<footer className="py-6 sm:py-8 text-center text-gray-400 mt-auto">
79+
<p className="text-xs sm:text-sm">© 2025 That Sky Mod. Not affiliated with thatgamecompany.</p>
80+
</footer>
81+
82+
{/* Controls */}
83+
<div className="fixed bottom-4 right-4 z-50 flex flex-row-reverse gap-4">
84+
<GradientCustomizer />
85+
<div className="h-14">
86+
<CustomButtons.DiscordButton />
87+
</div>
88+
</div>
7589
</div>
7690
</div>
7791
);

website/src/pages/ModShowcase.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import React, { useState, useEffect } from 'react';
22
import GradientCustomizer from '../components/GradientCustomizer';
33
import CustomButtons from '../components/CustomButtons';
44
import InteractiveCard from '../components/InteractiveCard';
5-
import LoadingSpinner from '../components/LoadingSpinner';
65
import playerImage from '../assets/TSM_Player.png';
76
import progressionImage from '../assets/TSM_Progression.png';
87
import dyesImage from '../assets/TSM_Dyes.png';

0 commit comments

Comments
 (0)