Skip to content

Commit b50c77a

Browse files
Remove fa section
1 parent 40a3f12 commit b50c77a

1 file changed

Lines changed: 0 additions & 64 deletions

File tree

src/app/(home)/page.tsx

Lines changed: 0 additions & 64 deletions
Original file line numberDiff line numberDiff line change
@@ -172,70 +172,6 @@ export default function HomePage() {
172172
</div>
173173
</div>
174174
</div>
175-
176-
<div className="game-section">
177-
<h3 className="game-title hytale-title">Web Services</h3>
178-
<div className="plugins-grid">
179-
<div className="plugin-card">
180-
<div className="card-icon">
181-
<Image
182-
src="/logos-and-banners/fancyanalytics-logo.png"
183-
alt="FancyAnalytics Logo"
184-
width={80}
185-
height={80}
186-
/>
187-
</div>
188-
<h3 className="card-title">FancyAnalytics</h3>
189-
<p className="card-description">A powerful analytics service for your servers, plugins and projects</p>
190-
<div className="platform-selector">
191-
<span className="platform-label">Platform:</span>
192-
<div className="custom-dropdown">
193-
<button
194-
className="dropdown-button"
195-
onClick={() => setDropdownOpen(!dropdownOpen)}
196-
onBlur={() => setTimeout(() => setDropdownOpen(false), 200)}
197-
>
198-
<span className="dropdown-value">
199-
{faPlatform === 'minecraft_plugin' ? 'Minecraft' : 'Hytale'}
200-
</span>
201-
<span className={`dropdown-arrow ${dropdownOpen ? 'open' : ''}`}></span>
202-
</button>
203-
{dropdownOpen && (
204-
<div className="dropdown-menu">
205-
<button
206-
className={`dropdown-item ${faPlatform === 'minecraft_plugin' ? 'active' : ''}`}
207-
onClick={() => {
208-
setFaPlatform('minecraft_plugin');
209-
setDropdownOpen(false);
210-
}}
211-
>
212-
Minecraft
213-
</button>
214-
<button
215-
className={`dropdown-item ${faPlatform === 'hytale_plugin' ? 'active' : ''}`}
216-
onClick={() => {
217-
setFaPlatform('hytale_plugin');
218-
setDropdownOpen(false);
219-
}}
220-
>
221-
Hytale
222-
</button>
223-
</div>
224-
)}
225-
</div>
226-
</div>
227-
<div className="card-buttons">
228-
<button
229-
className="btn-download"
230-
onClick={() => downloadLatestVersion('fa', faPlatform, setAlertMessage)}
231-
>
232-
Download
233-
</button>
234-
<Link href="/docs/hytale-plugins/fancycore" className="btn-docs">Documentation</Link>
235-
</div>
236-
</div>
237-
</div>
238-
</div>
239175
</div>
240176
</div>
241177

0 commit comments

Comments
 (0)