Skip to content

Commit 25fa8e9

Browse files
Merge pull request #19 from NickScherbakov/copilot/fix-github-pages-display
Fix runtime error preventing GitHub Pages display
2 parents 494142e + 13e5934 commit 25fa8e9

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

src/components/FeatureGrid.tsx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
import { Sparkle, Database, User, Code, ArrowRight } from '@phosphor-icons/react'
22
import { motion } from 'framer-motion'
3+
import { useTranslation } from '@/lib/i18n-context'
34

45
interface Feature {
56
id: string
67
icon: React.ReactNode
7-
titleKey: string
8-
descriptionKey: string
8+
title: string
9+
description: string
910
href: string
1011
}
1112

@@ -34,8 +35,8 @@ const features: Feature[] = [
3435
{
3536
id: 'examples',
3637
icon: <Code size={28} weight="duotone" />,
37-
titleKey: 'sections.examples',
38-
descriptionKey: 'sections.examplesDesc',
38+
title: 'Code Examples',
39+
description: 'Copy-paste ready code snippets to quickly integrate Spark features.',
3940
href: '#examples'
4041
}
4142
]

0 commit comments

Comments
 (0)