diff --git a/Checkfailed.html b/Checkfailed.html index 84cf7b0..1bf52a5 100644 --- a/Checkfailed.html +++ b/Checkfailed.html @@ -32,4 +32,3 @@

Thank you for using nginx.

- diff --git a/index.html b/index.html index 743486e..2f93031 100644 --- a/index.html +++ b/index.html @@ -3,17 +3,9 @@ - - - - - - - - + + + + + + ); +} diff --git a/src/index.tsx b/src/index.tsx index b6e6945..8e1dee1 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2,6 +2,7 @@ import { render } from "preact"; import { Suspense, lazy } from "preact/compat"; import { LoadSuspense } from "./LoadSuspense"; import { Helmet } from "react-helmet"; +import Meta from "./components/Meta"; const Routes = lazy(() => import("./routes")); @@ -10,6 +11,7 @@ const theme = localStorage.getItem("theme") || "main"; export default function App() { return (
+ diff --git a/src/pages/Faq.css b/src/pages/Faq.css index 3c35ea7..d8570a5 100644 --- a/src/pages/Faq.css +++ b/src/pages/Faq.css @@ -1,4 +1,4 @@ .highlighted { background-color: var(--navbar-text-color); - transition: background-color 1s ease; + transition: background-color 1s ease; } diff --git a/src/pages/Home.tsx b/src/pages/Home.tsx index 7700497..6dfd8f0 100644 --- a/src/pages/Home.tsx +++ b/src/pages/Home.tsx @@ -45,7 +45,7 @@ export function Home() { const usUrl = "https://us." + nonProtocolOrigin; const jpUrl = "https://jp." + nonProtocolOrigin; - console.log(usUrl, jpUrl) + console.log(usUrl, jpUrl); const [usTime, jpTime] = await Promise.all([ ping(usUrl), diff --git a/src/pages/Settings/BareInput.tsx b/src/pages/Settings/BareInput.tsx index 34d8d8e..8d26aac 100644 --- a/src/pages/Settings/BareInput.tsx +++ b/src/pages/Settings/BareInput.tsx @@ -68,7 +68,7 @@ function BareInput(props: BareInputProps) { value={inputValue} onKeyPress={(event) => { if (event.key === "Enter") { - handleChange() + handleChange(); } }} id="input"