Skip to content

Commit 721dd36

Browse files
JoeMattclaude
andcommitted
fix: move imports before metadata export in features/page.tsx
Import statements after an export declaration is invalid module syntax. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent e2dd85d commit 721dd36

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/app/features/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 Link from 'next/link';
23
import Features from '@/components/Features';
4+
import SocialButton, { DiscordIcon, XIcon } from '@/components/SocialButton';
35

46
export const metadata: Metadata = {
57
title: 'Features',
68
description: 'Explore iCube features: Dolphin-based emulation, MFi controller support, save states, tvOS big-screen gaming, and iOS-specific performance enhancements.',
79
alternates: { canonical: 'https://icube-emu.com/features/' },
810
};
9-
import Link from 'next/link';
10-
import SocialButton, { DiscordIcon, XIcon } from '@/components/SocialButton';
1111

1212
export default function FeaturesPage() {
1313
return (

0 commit comments

Comments
 (0)