-
{siteConfig.title}
+
+ {siteConfig.title}
+
diff --git a/components/previews/VideoPreview.tsx b/components/previews/VideoPreview.tsx
index 43666a1..d10b443 100644
--- a/components/previews/VideoPreview.tsx
+++ b/components/previews/VideoPreview.tsx
@@ -28,7 +28,14 @@ export const VideoPreview: FunctionComponent<{ file: any }> = ({ file }) => {
-
+
onedrive-vercel-index. Made with ❤ by SpencerWoo."
+ "footer": "Powered by
onedrive-vercel-index. Made with ❤ by SpencerWoo."
}
diff --git a/tailwind.config.js b/tailwind.config.js
index 3b38874..874c065 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -4,7 +4,7 @@ const colors = require('tailwindcss/colors')
module.exports = {
mode: 'jit',
purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
- darkMode: 'media', // or 'media' or 'class'
+ darkMode: 'media',
theme: {
colors: {
transparent: 'transparent',
@@ -23,6 +23,11 @@ module.exports = {
extend: {
fontFamily: {
sans: ['Inter', '"Noto Sans SC"', ...defaultTheme.fontFamily.sans]
+ },
+ colors: {
+ gray: {
+ 850: '#2E2E34'
+ }
}
}
},
diff --git a/utils/tools.ts b/utils/tools.ts
index a797834..47fb184 100644
--- a/utils/tools.ts
+++ b/utils/tools.ts
@@ -22,7 +22,7 @@ const fetcher = (url: string) => axios.get(url).then(res => res.data)
*/
export const useStaleSWR = (dataKey: Key) => {
const revalidationOptions = {
- revalidateOnMount: !cache.has(dataKey), //here we refer to the SWR cache
+ revalidateOnMount: !cache.has(dataKey),
revalidateOnFocus: false,
revalidateOnReconnect: false,
}