···1818 const [copied, setCopied] = useState(false);
19192020 const appUrl = process.env.NEXT_PUBLIC_APP_URL || 'http://localhost:3000';
2121-2121+2222 const bookmarkletCode = `javascript:(function(){
2323 const currentUrl = window.location.href;
2424 const sembleUrl = '${appUrl}/url?id=' + currentUrl;
···3838 // Create the bookmarklet link using dangerouslySetInnerHTML to bypass React's security check
3939 const createBookmarkletLink = () => {
4040 return {
4141- __html: `<a href="${bookmarkletCode}" style="text-decoration: none; padding: 8px 16px; background-color: var(--mantine-color-orange-6); color: white; border-radius: 4px; display: inline-flex; align-items: center; gap: 8px;"><svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2z"/></svg>Open in Semble</a>`
4141+ __html: `<a href="${bookmarkletCode}" style="text-decoration: none; padding: 8px 16px; background-color: var(--mantine-color-orange-6); color: white; border-radius: 4px; display: inline-flex; align-items: center; gap: 8px;"><svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2z"/></svg>Open in Semble</a>`,
4242 };
4343 };
4444···4848 <Stack gap="md">
4949 <Title order={1}>Semble Bookmarklet</Title>
5050 <Text size="lg" c="dimmed">
5151- Add this bookmarklet to your browser to quickly open any webpage in Semble
5252- and see what your network has shared about it.
5151+ Add this bookmarklet to your browser to quickly open any webpage in
5252+ Semble.
5353 </Text>
5454 </Stack>
55555656 <Alert icon={<BiInfoCircle />} title="How to install" color="orange">
5757 <Stack gap="sm">
5858 <Text>
5959- 1. Copy the bookmarklet code below or drag the button to your bookmarks bar
6060- </Text>
6161- <Text>
6262- 2. When you're on any webpage, click the bookmarklet to open it in Semble
5959+ 1. Copy the bookmarklet code below or drag the button to your
6060+ bookmarks bar
6361 </Text>
6462 <Text>
6565- 3. You'll see who in your network has shared that URL and any notes they've added
6363+ 2. When you're on any webpage, click the bookmarklet to open it in
6464+ Semble
6665 </Text>
6766 </Stack>
6867 </Alert>
···112111 </Button>
113112 </Box>
114113 </Stack>
115115-116116- <Alert icon={<BiInfoCircle />} title="Note" color="gray">
117117- <Text>
118118- This bookmarklet will open Semble in a new tab. Make sure you're logged in
119119- to see personalized results from your network.
120120- </Text>
121121- </Alert>
122114 </Stack>
123115 </Container>
124116 );