diff --git a/package-lock.json b/package-lock.json index fe0edf8..d22d99d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -11278,9 +11278,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001668", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001668.tgz", - "integrity": "sha512-nWLrdxqCdblixUO+27JtGJJE/txpJlyUy5YN1u53wLZkP0emYCo5zgS6QYft7VUYR42LGgi/S5hdLZTrnyIddw==", + "version": "1.0.30001792", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001792.tgz", + "integrity": "sha512-hVLMUZFgR4JJ6ACt1uEESvQN1/dBVqPAKY0hgrV70eN3391K6juAfTjKZLKvOMsx8PxA7gsY1/tLMMTcfFLLpw==", "funding": [ { "type": "opencollective", @@ -11294,7 +11294,8 @@ "type": "github", "url": "https://github.com/sponsors/ai" } - ] + ], + "license": "CC-BY-4.0" }, "node_modules/carbites": { "version": "1.0.6", diff --git a/src/App.jsx b/src/App.jsx index a0f0f5d..dd85be5 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -14,13 +14,13 @@ import Balance from './components/Balance'; import Home from './components/Home'; import LaunchFuel from './components/LaunchFuel'; import ViewTokens from './components/ViewTokens'; -import {Helmet} from "react-helmet"; +import { Helmet } from "react-helmet"; function App() { const [isDropdownOpen, setIsDropdownOpen] = useState(false); const dropdownRef = useRef(null); const buttonRef = useRef(null); - const location = useLocation(); + const location = useLocation(); const toggleDropdown = () => { setIsDropdownOpen(prev => !prev); @@ -46,17 +46,17 @@ function App() { }, [isDropdownOpen]); const endpoints = import.meta.env.VITE_ENDPOINT; - + return ( -
+
- {/* HELMET */} + {/* HELMET */} - + SOL Token Launchpad | Create and Launch Solana Tokens Easily @@ -87,12 +87,12 @@ function App() { {/* NAVBAR */} - +
} />