font change, url change

This commit is contained in:
2025-03-20 12:45:04 -07:00
parent c135dda6d0
commit 7c24ebdcfb
6 changed files with 21 additions and 24 deletions

View File

@@ -1,4 +1,5 @@
import React from "react";
import { Link } from "react-router-dom";
import styles from "./HowToUse.module.css";
const HowToUse = (): React.ReactNode => {
return (
@@ -11,9 +12,9 @@ const HowToUse = (): React.ReactNode => {
<ul>
<li>
In the{" "}
<a href="/graph">
<Link to="/graph">
<u>graph</u>
</a>{" "}
</Link>{" "}
manager, click 'Sync Spotify' to load your playlists into the
app. This pulls your latest Spotify playlists into the
application.
@@ -107,14 +108,14 @@ const HowToUse = (): React.ReactNode => {
<ul>
Check it out on GitHub:
<li>
<a href="https://github.com/20kaushik02/spotify-manager-web">
<Link to="https://github.com/20kaushik02/spotify-manager-web">
<u>The front-end - ReactJS (ReactFlow)</u>
</a>
</Link>
</li>
<li>
<a href="https://github.com/20kaushik02/spotify-manager">
<Link to="https://github.com/20kaushik02/spotify-manager">
<u>The REST API - ExpressJS</u>
</a>
</Link>
</li>
</ul>
</li>

View File

@@ -4,6 +4,7 @@ import Button from "../../components/Button/index.tsx";
import { loadExportDataFullURL } from "../../api/paths.ts";
import { useNavigate } from "react-router-dom";
import {
showInfoToastNotification,
showSuccessToastNotification,
showWarnToastNotification,
} from "../../components/ToastNotification/index.tsx";
@@ -33,6 +34,9 @@ const Settings = (): React.ReactNode => {
return;
}
setDataFile(selectedFile);
showInfoToastNotification(
"Note: Importing will overwrite all links currently in-place."
);
};
const importGraph = async () => {