Skip to content

Commit 44b622f

Browse files
JoeMattclaude
andcommitted
style: fix import ordering (imports before exports) in downloads and links pages
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 43fed88 commit 44b622f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/app/downloads/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import type { Metadata } from 'next';
2+
import path from 'path';
3+
import Link from 'next/link';
24
import { parseBuilds } from '@/lib/buildParser';
35

46
export const metadata: Metadata = {
57
title: 'Downloads',
68
description: 'Download the latest iCube IPA for iOS and tvOS. Add the AltStore or SideStore source for easy installation and automatic updates.',
79
alternates: { canonical: 'https://icube-emu.com/downloads/' },
810
};
9-
import path from 'path';
10-
import Link from 'next/link';
1111

1212
export const dynamic = 'force-static';
1313
export const revalidate = 3600;

src/app/links/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import type { Metadata } from 'next';
22
import DownloadSection from '@/components/DownloadSection';
3+
import SocialButton, { DiscordIcon, XIcon, BmcIcon, PatreonIcon } from '@/components/SocialButton';
34

45
export const metadata: Metadata = {
56
title: 'Links & Resources',
67
description: 'Useful links for iCube: downloads, Dolphin emulator resources, community channels, and related projects.',
78
alternates: { canonical: 'https://icube-emu.com/links/' },
89
};
9-
import SocialButton, { DiscordIcon, XIcon, BmcIcon, PatreonIcon } from '@/components/SocialButton';
1010

1111
export default function Links() {
1212
return (

0 commit comments

Comments
 (0)