diff options
Diffstat (limited to 'src/pages/Gear.tsx')
| -rw-r--r-- | src/pages/Gear.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pages/Gear.tsx b/src/pages/Gear.tsx index dbbcdfb..a1984ee 100644 --- a/src/pages/Gear.tsx +++ b/src/pages/Gear.tsx @@ -1,4 +1,4 @@ -import CardLink from '../components/CardLink'; +import Card from '../components/Card'; import { dailyDrivers, @@ -14,7 +14,7 @@ function PartsGroup({ title, parts }: { title?: string; parts: Part[] }) { <ul className="space-y-2"> {parts.map((p) => ( <li key={p.name}> - <CardLink + <Card title={p.name} body={p.description} href={p.url} @@ -27,7 +27,7 @@ function PartsGroup({ title, parts }: { title?: string; parts: Part[] }) { ); } -export default function GearPage() { +export default function Gear() { return ( <> <title>߸ gear</title> @@ -40,4 +40,4 @@ export default function GearPage() { <PartsGroup title="NAS" parts={nasParts} /> </> ); -}
\ No newline at end of file +} |
