Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions violet-message-search-client/vms-web/src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { memo } from "react";
import { Provider } from "react-redux";
import { Navigate, Route, Routes } from "react-router";
import HomePage from "./pages/home/HomePage";
Expand All @@ -6,8 +7,7 @@ import store from "./store";
import { initSearchData } from "./utils/searchData";

// initSearchData();

function App() {
const App = memo(function App() {
return (
// <HomePage />
<Provider store={store}>
Expand All @@ -18,6 +18,5 @@ function App() {
</Routes>
</Provider>
);
}

export default App;
});
export default App;
66 changes: 22 additions & 44 deletions violet-message-search-client/vms-web/src/pages/home/HomeNavbar.tsx
Original file line number Diff line number Diff line change
@@ -1,58 +1,36 @@
import { memo } from "react";
import { Container, Navbar } from "react-bootstrap";
import styles from "./HomeNavbar.module.scss";

function GithubButton() {
return (
<div className={styles.GithubButton}>
<svg
xmlns="http://www.w3.org/2000/svg"
width="32"
height="32"
fill="white"
viewBox="0 0 16 16"
>
const GithubButton = memo(function GithubButton() {
return <div className={styles.GithubButton}>
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="white" viewBox="0 0 16 16">
<path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z" />
</svg>
</div>
);
}

function DiscordButton() {
return (
<div className={styles.DiscordButton}>
<svg
xmlns="http://www.w3.org/2000/svg"
width="32"
height="32"
fill="white"
viewBox="0 0 16 16"
>
</div>;
});
const DiscordButton = memo(function DiscordButton() {
return <div className={styles.DiscordButton}>
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="white" viewBox="0 0 16 16">
<path d="M13.545 2.907a13.227 13.227 0 0 0-3.257-1.011.05.05 0 0 0-.052.025c-.141.25-.297.577-.406.833a12.19 12.19 0 0 0-3.658 0 8.258 8.258 0 0 0-.412-.833.051.051 0 0 0-.052-.025c-1.125.194-2.22.534-3.257 1.011a.041.041 0 0 0-.021.018C.356 6.024-.213 9.047.066 12.032c.001.014.01.028.021.037a13.276 13.276 0 0 0 3.995 2.02.05.05 0 0 0 .056-.019c.308-.42.582-.863.818-1.329a.05.05 0 0 0-.01-.059.051.051 0 0 0-.018-.011 8.875 8.875 0 0 1-1.248-.595.05.05 0 0 1-.02-.066.051.051 0 0 1 .015-.019c.084-.063.168-.129.248-.195a.05.05 0 0 1 .051-.007c2.619 1.196 5.454 1.196 8.041 0a.052.052 0 0 1 .053.007c.08.066.164.132.248.195a.051.051 0 0 1-.004.085 8.254 8.254 0 0 1-1.249.594.05.05 0 0 0-.03.03.052.052 0 0 0 .003.041c.24.465.515.909.817 1.329a.05.05 0 0 0 .056.019 13.235 13.235 0 0 0 4.001-2.02.049.049 0 0 0 .021-.037c.334-3.451-.559-6.449-2.366-9.106a.034.034 0 0 0-.02-.019Zm-8.198 7.307c-.789 0-1.438-.724-1.438-1.612 0-.889.637-1.613 1.438-1.613.807 0 1.45.73 1.438 1.613 0 .888-.637 1.612-1.438 1.612Zm5.316 0c-.788 0-1.438-.724-1.438-1.612 0-.889.637-1.613 1.438-1.613.807 0 1.451.73 1.438 1.613 0 .888-.631 1.612-1.438 1.612Z" />
</svg>
</div>
);
}

export default function HomeNavbar() {
return (
<Navbar bg="dark" variant="dark">
</div>;
});
export default memo(function HomeNavbar() {
return <Navbar bg="dark" variant="dark">
<Container>
<Navbar.Brand href="/home">
<img
alt=""
src="./logo.png"
width="30"
height="30"
className="d-inline-block align-top"
/>{" "}
<img alt="" src="./logo.png" width="30" height="30" className="d-inline-block align-top" />{" "}
Violet Message Search
</Navbar.Brand>
<div style={{ display: "flex" }}>
<div style={{
display: "flex"
}}>
<DiscordButton />
<div style={{ padding: "0 16px 0 0" }}></div>
<div style={{
padding: "0 16px 0 0"
}}></div>
<GithubButton />
</div>
</Container>
</Navbar>
);
}
</Navbar>;
});
Loading