-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpage.tsx
More file actions
27 lines (26 loc) · 963 Bytes
/
Copy pathpage.tsx
File metadata and controls
27 lines (26 loc) · 963 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import { PageHeader } from "@/components/page-header"
import { Card, CardContent } from "@/components/ui/card"
import { Activity } from "lucide-react"
export default function ActivityPage() {
return (
<>
<PageHeader
title="Activity"
description="See what's happening across your repositories."
/>
<Card className="glow-border">
<CardContent>
<div className="flex flex-col items-center justify-center py-16 text-center">
<div className="flex size-12 items-center justify-center rounded-full bg-primary/10 mb-3">
<Activity className="size-5 text-primary" />
</div>
<p className="text-sm font-medium">Activity feed coming soon</p>
<p className="mt-1 text-xs text-muted-foreground">
Event timeline, commit digests, and org pulse will appear here.
</p>
</div>
</CardContent>
</Card>
</>
)
}