generated from chiffre-io/template-library
-
-
Notifications
You must be signed in to change notification settings - Fork 162
/
Copy pathpage.tsx
121 lines (119 loc) · 3 KB
/
page.tsx
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
import { ReactParisLogo } from '@/src/components/react-paris'
import { SiBluesky, SiDiscord } from '@icons-pack/react-simple-icons'
import {
Github,
Images,
Library,
Linkedin,
Mail,
Twitter,
Youtube
} from 'lucide-react'
import { Logo } from '../blog/[slug]/_components/47ng'
import { LinkTree, LinkTreeItemProps } from './link-tree'
const links: LinkTreeItemProps[] = [
{
href: 'https://discord.com/channels/723276276072317098/1352179917680283743',
icon: <SiDiscord className="size-5" />,
label: <>Questions & Feedback 🙏</>
},
{
href: '/',
icon: <Library className="size-5" />,
label: 'Documentation'
},
{
href: 'https://github.com/47ng/nuqs',
icon: <Github className="size-5" />,
label: (
<>
GitHub{' '}
<span className="text-sm text-muted-foreground">
(give nuqs a star! ⭐)
</span>
</>
)
},
{
href: 'https://github.com/franky47/react-paris-25-demo',
icon: <Github className="size-5" />,
label: 'Demo app'
},
{
href: 'https://nuqs.47ng.com/react-paris-25-slides.pdf',
icon: <Images className="size-5" />,
label: 'Slides'
},
{
href: 'https://bsky.app/profile/francoisbest.com',
icon: <SiBluesky className="size-5" />,
label: (
<>
Bluesky{' '}
<span className="text-sm text-muted-foreground">@francoisbest.com</span>
</>
)
},
{
href: 'https://bsky.app/profile/nuqs.47ng.com',
icon: <SiBluesky className="size-5" />,
label: (
<>
Bluesky{' '}
<span className="text-sm text-muted-foreground">@nuqs.47ng.com</span>
</>
)
},
{
href: 'https://www.youtube.com/@47ng-dev',
icon: <Youtube className="size-5" />,
label: 'YouTube'
},
{
href: 'https://www.linkedin.com/in/francoisbest/',
icon: <Linkedin className="size-5" />,
label: <>LinkedIn</>
},
{
href: 'mailto:nuqs@47ng.com',
icon: <Mail className="size-5" />,
label: 'Contact me'
},
{
href: 'https://x.com/nuqs47ng',
icon: <Twitter className="size-5" />,
label: (
<>
Twitter <span className="text-sm text-muted-foreground">@nuqs47ng</span>
</>
)
},
{
href: 'https://x.com/fortysevenfx',
icon: <Twitter className="size-5" />,
label: (
<>
Twitter{' '}
<span className="text-sm text-muted-foreground">
@fortysevenfx (archived)
</span>
</>
)
}
]
export default function Page() {
return (
<section className="container max-w-lg py-12">
<div className="flex items-center justify-center gap-12">
<Logo className="size-16" />
<ReactParisLogo className="-mx-4 mb-4 size-24 translate-y-1.5" />
</div>
<p className="mb-2 text-center">Thanks for attending my talk! 🫶</p>
<p className="mb-8 text-balance text-center">
Here are some useful links to learn more about nuqs, and how to find me
on social media:
</p>
<LinkTree items={links} />
</section>
)
}