️ perf(seo): og image url fix

This commit is contained in:
eshanized
2024-12-25 11:32:28 +05:30
parent 349d3b4292
commit 88b897616a
4 changed files with 10 additions and 10 deletions

View File

@@ -8,8 +8,8 @@ export interface DownloadVersion {
export const downloads: DownloadVersion[] = [
{
version: '2024.1',
size: '4.2 GB',
version: 'Arctic V',
size: '1.4 GB',
url: 'https://snigdhaos.org/downloads/snigdhaos-2024.1-installer-amd64.iso',
sha256: 'e4654e5633f4e1f8f57a9fb3dca02f9db06e9acb5e346f0fae9d9f5c3a9c0e9',
gpg: '-----BEGIN PGP SIGNATURE-----\nVersion: GnuPG v2\n...',

View File

@@ -1,5 +1,5 @@
import { useState, useEffect } from 'react';
import { getUserLocation, type UserLocation } from '@/lib/location';
import { getUserLocation, type UserLocation } from '../lib/location';
export function useLocation() {
const [location, setLocation] = useState<UserLocation | null>(null);

View File

@@ -1,5 +1,5 @@
import { useState, useEffect } from 'react';
import { measureNetworkSpeed } from '@/lib/network';
import { measureNetworkSpeed } from '../lib/network';
export function useNetworkSpeed() {
const [speed, setSpeed] = useState<number | null>(null);