Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion components/bento-grid.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { BookOpen, Users, MessageSquare, Github, Send, MessageCircle, Calendar } from "lucide-react"
import { BookOpen, Users, MessageSquare, Github, Send, MessageCircle, Calendar, Twitter } from "lucide-react"
import { BentoCard } from "@/components/bento-card"
import { links } from "@/lib/constants"

Expand Down Expand Up @@ -60,6 +60,14 @@ export function BentoGrid() {
href={links.reddit.href}
/>

<BentoCard
title="X (Twitter)"
description="Follow Ritual Chain on X for the latest announcements, updates, and community highlights."
icon={Twitter}
className="md:col-span-1"
href={links.twitter.href}
/>

<BentoCard
title="Office Hours"
description="Join Ritual's Lead DevRel Engineer, Val Alexander, every Thursday for office hours. Ask questions, explore new features, and get assistance bringing your ideas from prototype to production."
Expand Down
2 changes: 1 addition & 1 deletion lib/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const links = {
},
twitter: {
name: "Twitter",
href: "https://x.com/BunsDev",
href: "https://x.com/ritualfnd",
icon: "ri:twitter-x-fill",
type: "community" as const
},
Expand Down