diff --git a/README.md b/README.md index 4d31034..36b0f0b 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/src/components/SEO.tsx b/src/components/SEO.tsx new file mode 100644 index 0000000..aa485bb --- /dev/null +++ b/src/components/SEO.tsx @@ -0,0 +1,30 @@ +import { JSX } from "solid-js"; +import { Meta, Title } from "solid-start"; + +export default function SEO(): JSX.Element { + return ( + <> + + + + + Velocity + + + + + + + + + + + + ); +} diff --git a/src/root.tsx b/src/root.tsx index f1d6c91..136ff0a 100644 --- a/src/root.tsx +++ b/src/root.tsx @@ -11,6 +11,7 @@ import { Scripts } from "solid-start"; import "./root.css"; +import SEO from "./components/SEO"; export default function Root() { return ( @@ -18,6 +19,7 @@ export default function Root() { +