Skip to content

Commit b4aefe4

Browse files
committed
fix: use BrandXIcon and correct X handle on feed page
1 parent f0729c0 commit b4aefe4

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/routes/feed.tsx

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ import { createFileRoute, Link } from '@tanstack/react-router'
22
import { Footer } from '~/components/Footer'
33
import { Card } from '~/components/Card'
44
import { seo } from '~/utils/seo'
5-
import { Rss, BookOpen, Github, Twitter } from 'lucide-react'
5+
import { Rss, BookOpen, Github } from 'lucide-react'
6+
import { BrandXIcon } from '~/components/icons/BrandXIcon'
67

78
export const Route = createFileRoute('/feed')({
89
component: RouteComp,
@@ -39,13 +40,13 @@ const alternatives = [
3940
internal: false,
4041
},
4142
{
42-
title: 'Twitter / X',
43-
icon: Twitter,
43+
title: 'X',
44+
icon: BrandXIcon,
4445
gradient: 'from-sky-400 to-blue-500',
4546
borderColor: 'hover:border-sky-500/50',
4647
description:
47-
'Follow @tannerlinsley for announcements, early previews, and release highlights.',
48-
href: 'https://x.com/tannerlinsley',
48+
'Follow @tan_stack for announcements, early previews, and release highlights.',
49+
href: 'https://x.com/tan_stack',
4950
label: 'Follow on X',
5051
internal: false,
5152
},

0 commit comments

Comments
 (0)