Hey is a decentralized and permissionless social media app built with Lens Protocol 馃尶
1import LoginButton from "@/components/Shared/LoginButton";
2import { H3 } from "@/components/Shared/UI";
3import Footer from "./Footer";
4import PageLayout from "./PageLayout";
5
6const NotLoggedIn = () => {
7 return (
8 <PageLayout sidebar={<Footer />} title="Not logged in">
9 <div className="p-10 text-center">
10 <H3 className="mb-4">Not logged in!</H3>
11 <div className="mb-4">Log in to continue</div>
12 <LoginButton />
13 </div>
14 </PageLayout>
15 );
16};
17
18export default NotLoggedIn;