-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpage.tsx
More file actions
24 lines (22 loc) · 784 Bytes
/
page.tsx
File metadata and controls
24 lines (22 loc) · 784 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
"use client";
import { ReactElement } from "react";
import HelloWorld from "../_components/HelloWorld";
import TelegramUser from "../_components/TelegramUser";
import { TwitterLogin } from "../_components/TwitterLogin";
import { DiscordLogin } from "../_components/DiscordLogin";
import { GithubLogin } from "../_components/GithubLogin";
import { NuggetsDemoPageBtn } from "../_components/NuggetsDemoPageBtn";
export default function Home(): ReactElement {
return (
<main className="min-h-screen w-full flex items-center justify-center p-4">
<div className="w-full max-w-4xl mx-auto">
<HelloWorld />
<TelegramUser />
<TwitterLogin />
<DiscordLogin />
<GithubLogin />
<NuggetsDemoPageBtn />
</div>
</main>
);
}