Skip to content

Commit

Permalink
seo & update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
cohenerickson committed Feb 9, 2023
1 parent 0cb418f commit 5225911
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@

## About

Velocity's initial inspiration came from other proxies such as Hypertabs and Rammerhead Browser. After using these proxies I came across issues that break the illusion of using a web browser.
The initial inspiration for Velocity came from other proxies such as Hypertabs and Rammerhead Browser. After using these proxies issues arose that broke the illusion of using a web browser which velocity attempts to fix.

## Features

* Sleak Firefox inspired UI
* Sleek Firefox inspired UI
* Proper link handling
* Script injection for native functions

Expand Down
30 changes: 30 additions & 0 deletions src/components/SEO.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import { JSX } from "solid-js";
import { Meta, Title } from "solid-start";

export default function SEO(): JSX.Element {
return (
<>
<Meta charset="utf-8" />
<Meta name="viewport" content="width=device-width, initial-scale=1" />
<Meta name="theme-color" content="#00ddff" />

<Title>Velocity</Title>
<Meta property="og:title" content="Velocity" />

<link rel="icon" href="/favicon.ico" />

<Meta name="robots" content="index, follow" />
<Meta name="revisit-after" content="7 days" />

<Meta
name="description"
content="A highly customizable tabbed proxy for evading internet censorship."
/>
<Meta
property="og:description"
content="A highly customizable tabbed proxy for evading internet censorship."
/>
<Meta name="keywords" content="proxy,velocity,tabbed,proxy,unblocker" />
</>
);
}
2 changes: 2 additions & 0 deletions src/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,15 @@ import {
Scripts
} from "solid-start";
import "./root.css";
import SEO from "./components/SEO";

export default function Root() {
return (
<Html lang="en">
<Head>
<Meta charset="utf-8" />
<Meta name="viewport" content="width=device-width, initial-scale=1" />
<SEO />
<script src="/pro.fontawesome.js" defer></script>
<script src="/uv/uv.bundle.js" defer></script>
<script src="/uv/uv.config.js" defer></script>
Expand Down

0 comments on commit 5225911

Please sign in to comment.