This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

chore: update extension docs

+5 -5
+5 -5
docs/browser-extension-setup.md
··· 75 75 **popup.tsx:** 76 76 ```typescript 77 77 import { useAuth } from "./hooks/useAuth" 78 - import { Button } from "@mantine/core" 79 - import "./app/globals.css" // Reuse your styles 78 + import { Button, Center, Title } from "@mantine/core" 79 + import "@mantine/core/styles.css"; // Reuse your styles 80 80 81 81 function IndexPopup() { 82 82 const { isAuthenticated, login } = useAuth() 83 83 84 84 return ( 85 - <div className="w-80 p-4"> 86 - <h1>Your App Extension</h1> 85 + <Center> 86 + <Title order={1}>Your App Extension</Title> 87 87 {isAuthenticated ? ( 88 88 <div>Welcome back!</div> 89 89 ) : ( 90 90 <Button onClick={() => login()}>Sign In</Button> 91 91 )} 92 - </div> 92 + </Center> 93 93 ) 94 94 } 95 95