added deployments
This commit is contained in:
parent
d1fda5def9
commit
b1f0970aa5
2 changed files with 49 additions and 40 deletions
80
index.html
80
index.html
|
@ -1,43 +1,43 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" type="image/svg+xml" href="/search.svg" />
|
||||
<link
|
||||
rel="preconnect"
|
||||
href="https://fonts.googleapis.com"
|
||||
crossorigin="anonymous"
|
||||
/>
|
||||
<link
|
||||
rel="preconnect"
|
||||
href="https://fonts.gstatic.com"
|
||||
crossorigin="anonymous"
|
||||
/>
|
||||
<link
|
||||
rel="preload"
|
||||
as="style"
|
||||
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap"
|
||||
/>
|
||||
<link
|
||||
rel="stylesheet"
|
||||
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap"
|
||||
media="print"
|
||||
onload="this.media='all'"
|
||||
/>
|
||||
<script
|
||||
defer
|
||||
data-domain="unduck.link"
|
||||
src="https://plausible.io/js/script.js"
|
||||
></script>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Unduck</title>
|
||||
<meta
|
||||
name="description"
|
||||
content="A better default search engine (with bangs!)"
|
||||
/>
|
||||
</head>
|
||||
<body style="background-color: transparent">
|
||||
<div id="app"></div>
|
||||
<script type="module" src="/src/main.ts"></script>
|
||||
</body>
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" type="image/svg+xml" href="/search.svg" />
|
||||
<link
|
||||
rel="preconnect"
|
||||
href="https://fonts.googleapis.com"
|
||||
crossorigin="anonymous"
|
||||
/>
|
||||
<link
|
||||
rel="preconnect"
|
||||
href="https://fonts.gstatic.com"
|
||||
crossorigin="anonymous"
|
||||
/>
|
||||
<link
|
||||
rel="preload"
|
||||
as="style"
|
||||
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap"
|
||||
/>
|
||||
<link
|
||||
rel="stylesheet"
|
||||
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap"
|
||||
media="print"
|
||||
onload="this.media='all'"
|
||||
/>
|
||||
<script
|
||||
defer
|
||||
data-domain="unduck.link"
|
||||
src="https://plausible.io/js/script.js"
|
||||
></script>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>SearchLock</title>
|
||||
<meta
|
||||
name="description"
|
||||
content="A better default search engine (with bangs, and better defaults!)"
|
||||
/>
|
||||
</head>
|
||||
<body style="background-color: transparent">
|
||||
<div id="app"></div>
|
||||
<script type="module" src="/src/main.ts"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,6 +1,15 @@
|
|||
// This file was (mostly) ripped from https://duckduckgo.com/bang.js
|
||||
|
||||
export const bangs = [
|
||||
{
|
||||
c: "AI",
|
||||
d: "perplexity.ai",
|
||||
r: 0,
|
||||
s: "Perplexity AI",
|
||||
sc: "AI",
|
||||
t: "pl",
|
||||
u: "https://perplexity.ai/search?q={{{s}}}",
|
||||
},
|
||||
{
|
||||
c: "AI",
|
||||
d: "www.t3.chat",
|
||||
|
|
Loading…
Add table
Reference in a new issue