test bonk font

This commit is contained in:
saml33 2023-06-08 15:33:43 +10:00
commit b40a468451
15 changed files with 146 additions and 145 deletions

View File

@ -25,6 +25,12 @@ import { Transition } from '@headlessui/react'
import { useTranslation } from 'next-i18next' import { useTranslation } from 'next-i18next'
import TermsOfUseModal from './modals/TermsOfUseModal' import TermsOfUseModal from './modals/TermsOfUseModal'
import { useTheme } from 'next-themes' import { useTheme } from 'next-themes'
import {
cherryBombOne,
ttCommons,
ttCommonsExpanded,
ttCommonsMono,
} from 'utils/fonts'
export const sideBarAnimationDuration = 300 export const sideBarAnimationDuration = 300
const termsLastUpdated = 1679441610978 const termsLastUpdated = 1679441610978
@ -90,7 +96,9 @@ const Layout = ({ children }: { children: ReactNode }) => {
}, [acceptTerms, connected]) }, [acceptTerms, connected])
return ( return (
<> <main
className={`${ttCommons.variable} ${ttCommonsExpanded.variable} ${ttCommonsMono.variable} ${cherryBombOne.variable} font-sans`}
>
<div className="fixed z-30"> <div className="fixed z-30">
<SuccessParticles /> <SuccessParticles />
</div> </div>
@ -146,7 +154,7 @@ const Layout = ({ children }: { children: ReactNode }) => {
onClose={() => setAcceptTerms(Date.now())} onClose={() => setAcceptTerms(Date.now())}
/> />
) : null} ) : null}
</> </main>
) )
} }

View File

@ -60,7 +60,7 @@ const HealthImpact = ({
</span> */} </span> */}
</div> </div>
) : ( ) : (
<span className="text-xs"></span> <span className="text-xs text-th-fgd-2"></span>
)} )}
</div> </div>
) )

View File

@ -1,5 +1,6 @@
import { Dialog } from '@headlessui/react' import { Dialog } from '@headlessui/react'
import { XMarkIcon } from '@heroicons/react/20/solid' import { XMarkIcon } from '@heroicons/react/20/solid'
import { ttCommons, ttCommonsExpanded, ttCommonsMono } from 'utils/fonts'
type ModalProps = { type ModalProps = {
children: React.ReactNode children: React.ReactNode
@ -41,7 +42,9 @@ function Modal({
}`} }`}
> >
<Dialog.Panel <Dialog.Panel
className={`h-full w-full bg-th-bkg-1 ${ className={`${ttCommons.variable} ${ttCommonsExpanded.variable} ${
ttCommonsMono.variable
} font-sans h-full w-full bg-th-bkg-1 font-body ${
fullScreen fullScreen
? '' ? ''
: 'p-4 pt-6 sm:h-auto sm:max-w-md sm:rounded-lg sm:border sm:border-th-bkg-3 sm:p-6' : 'p-4 pt-6 sm:h-auto sm:max-w-md sm:rounded-lg sm:border sm:border-th-bkg-3 sm:p-6'

Binary file not shown.

View File

@ -23,6 +23,7 @@
"@headlessui/react": "1.6.6", "@headlessui/react": "1.6.6",
"@heroicons/react": "2.0.10", "@heroicons/react": "2.0.10",
"@metaplex-foundation/js": "0.18.3", "@metaplex-foundation/js": "0.18.3",
"@next/font": "13.4.4",
"@project-serum/anchor": "0.25.0", "@project-serum/anchor": "0.25.0",
"@pythnetwork/client": "2.15.0", "@pythnetwork/client": "2.15.0",
"@solana/spl-governance": "0.3.27", "@solana/spl-governance": "0.3.27",
@ -53,7 +54,7 @@
"js-cookie": "3.0.1", "js-cookie": "3.0.1",
"klinecharts": "8.6.3", "klinecharts": "8.6.3",
"lodash": "4.17.21", "lodash": "4.17.21",
"next": "13.1.0", "next": "13.4.4",
"next-i18next": "11.1.1", "next-i18next": "11.1.1",
"next-themes": "0.1.1", "next-themes": "0.1.1",
"process": "0.11.10", "process": "0.11.10",

View File

@ -6,13 +6,6 @@ class MyDocument extends Document {
return ( return (
<Html> <Html>
<Head> <Head>
<link
rel="preload"
href="/fonts/TT_Commons_Pro_Expanded_DemiBold.woff2"
as="font"
type="font/woff2"
crossOrigin="anonymous"
/>
<Script <Script
src="/datafeeds/udf/dist/bundle.js" src="/datafeeds/udf/dist/bundle.js"
strategy="beforeInteractive" strategy="beforeInteractive"

View File

@ -1,23 +1,3 @@
/* @import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400&display=swap'); */
@font-face {
font-family: 'TT Commons';
font-weight: normal;
src: url('/fonts/TT_Commons_Pro_Regular.woff2') format('woff2');
}
@font-face {
font-family: 'TT Commons';
font-weight: medium;
src: url('/fonts/TT_Commons_Pro_Medium.woff2') format('woff2');
}
@font-face {
font-family: 'TT Commons';
font-weight: bold;
src: url('/fonts/TT_Commons_Pro_DemiBold.woff2') format('woff2');
}
:root:not(.theme-dark) { :root:not(.theme-dark) {
--black: #fff; --black: #fff;
--primary: #ff9c24; --primary: #ff9c24;
@ -97,7 +77,8 @@ html .chart-page .chart-container-border {
} }
html .chart-page { html .chart-page {
font-family: 'TT Commons', sans-serif; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
} }
html .loading-indicator { html .loading-indicator {
@ -195,7 +176,8 @@ html.theme-dark .chart-page .chart-container-border {
} }
html.theme-dark .chart-page { html.theme-dark .chart-page {
font-family: 'TT Commons', sans-serif; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
} }
html.theme-dark .loading-indicator { html.theme-dark .loading-indicator {

View File

@ -2,34 +2,6 @@
@tailwind components; @tailwind components;
@tailwind utilities; @tailwind utilities;
@font-face {
font-family: 'TT Mono';
src: url('/fonts/TT_Commons_Pro_Mono_Medium.woff2') format('woff2');
}
@font-face {
font-family: 'TT Commons Expanded';
src: url('/fonts/TT_Commons_Pro_Expanded_DemiBold.woff2') format('woff2');
}
@font-face {
font-family: 'TT Commons';
font-weight: normal;
src: url('/fonts/TT_Commons_Pro_Normal.woff2') format('woff2');
}
@font-face {
font-family: 'TT Commons';
font-weight: medium;
src: url('/fonts/TT_Commons_Pro_Medium.woff2') format('woff2');
}
@font-face {
font-family: 'TT Commons';
font-weight: bold;
src: url('/fonts/TT_Commons_Pro_DemiBold.woff2') format('woff2');
}
/* Reset */ /* Reset */
html, html,
@ -450,7 +422,7 @@ th {
--success: theme('colors.bonk-theme.success'); --success: theme('colors.bonk-theme.success');
--warning: theme('colors.bonk-theme.warning'); --warning: theme('colors.bonk-theme.warning');
--font-body: 'TT Commons', sans-serif; --font-body: 'TT Commons', sans-serif;
--font-display: 'TT Commons Expanded', sans-serif; --font-display: 'Cherry Bomb One', sans-serif;
--font-mono: 'TT Mono', mono; --font-mono: 'TT Mono', mono;
} }
@ -462,6 +434,10 @@ body {
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
} }
main {
@apply font-body;
}
button { button {
@apply default-transition tracking-wider focus:outline-none; @apply default-transition tracking-wider focus:outline-none;
-webkit-font-feature-settings: 'zero' 1; -webkit-font-feature-settings: 'zero' 1;

38
utils/fonts.ts Normal file
View File

@ -0,0 +1,38 @@
import localFont from '@next/font/local'
export const ttCommons = localFont({
src: [
{
path: '../fonts/TT_Commons_Pro_Normal.woff2',
weight: '500',
style: 'normal',
},
{
path: '../fonts/TT_Commons_Pro_Medium.woff2',
weight: '600',
style: 'medium',
},
{
path: '../fonts/TT_Commons_Pro_DemiBold.woff2',
weight: '700',
style: 'bold',
},
],
variable: '--font-body',
})
export const ttCommonsExpanded = localFont({
src: '../fonts/TT_Commons_Pro_Expanded_DemiBold.woff2',
variable: '--font-display',
})
export const ttCommonsMono = localFont({
src: '../fonts/TT_Commons_Pro_Mono_Medium.woff2',
variable: '--font-mono',
})
// bonk theme
export const cherryBombOne = localFont({
src: '../fonts/CherryBombOne-Regular.woff2',
variable: '--font-display',
})

164
yarn.lock
View File

@ -877,10 +877,10 @@
bn.js "^5.2.0" bn.js "^5.2.0"
debug "^4.3.4" debug "^4.3.4"
"@next/env@13.1.0": "@next/env@13.4.4":
version "13.1.0" version "13.4.4"
resolved "https://registry.yarnpkg.com/@next/env/-/env-13.1.0.tgz#fdb4d4711c6bd544dd80f0afd9846af2699b8c1c" resolved "https://registry.yarnpkg.com/@next/env/-/env-13.4.4.tgz#46b620f6bef97fe67a1566bf570dbb791d40c50a"
integrity sha512-6iNixFzCndH+Bl4FetQzOMjxCJqg8fs0LAlZviig1K6mIjOWH2m2oPcHcOg1Ta5VCe7Bx5KG1Hs+NrWDUkBt9A== integrity sha512-q/y7VZj/9YpgzDe64Zi6rY1xPizx80JjlU2BTevlajtaE3w1LqweH1gGgxou2N7hdFosXHjGrI4OUvtFXXhGLg==
"@next/eslint-plugin-next@13.0.0": "@next/eslint-plugin-next@13.0.0":
version "13.0.0" version "13.0.0"
@ -889,70 +889,55 @@
dependencies: dependencies:
glob "7.1.7" glob "7.1.7"
"@next/swc-android-arm-eabi@13.1.0": "@next/font@13.4.4":
version "13.1.0" version "13.4.4"
resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-13.1.0.tgz#b754f03c1af5572e950993b00cbc189d063e7642" resolved "https://registry.yarnpkg.com/@next/font/-/font-13.4.4.tgz#513632591a1041e39c1020022c0995ca78dde4fc"
integrity sha512-ANBZZRjZBV+Sii11ZVxbxSvfIi6dZwu4w+XnJBDmz+0/wtAigpjYWyMkuWZ/RCD7INdusOlU4EgJ99WzWGIDjA== integrity sha512-iYmL/O0rV9NS8a2UXuRoZOzImz8Q0mM8bAmxtj8nccrpwZ6iOOZlbf2d0Genczl4wtuXRXVPR8goGjJM4C2SDg==
"@next/swc-android-arm64@13.1.0": "@next/swc-darwin-arm64@13.4.4":
version "13.1.0" version "13.4.4"
resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-13.1.0.tgz#8794b4c1680ed8825b9a0e9ae5b3d14cd0ad9f07" resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.4.tgz#8c14083c2478e2a9a8d140cce5900f76b75667ff"
integrity sha512-nPwbkS3aZjCIe61wztgjXjIeylijOP8uGtDGjjJVUF3B/5GLVx3ngZu6tjPTMEgaLM0u//HuGK+aZolWUQWE4g== integrity sha512-xfjgXvp4KalNUKZMHmsFxr1Ug+aGmmO6NWP0uoh4G3WFqP/mJ1xxfww0gMOeMeSq/Jyr5k7DvoZ2Pv+XOITTtw==
"@next/swc-darwin-arm64@13.1.0": "@next/swc-darwin-x64@13.4.4":
version "13.1.0" version "13.4.4"
resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.1.0.tgz#c7aeb19e53ee06f333b3af1a192a9a5b5b583755" resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.4.tgz#5fe01c65c80fcb833c8789fd70f074ea99893864"
integrity sha512-0hUydiAW18jK2uGPnZRdnRQtdB/3ZoPo84A6zH7MJHxAWw9lzVsv3kMg9kgVBBlrivzqdNN8rdgA+eYNxzXU9w== integrity sha512-ZY9Ti1hkIwJsxGus3nlubIkvYyB0gNOYxKrfsOrLEqD0I2iCX8D7w8v6QQZ2H+dDl6UT29oeEUdDUNGk4UEpfg==
"@next/swc-darwin-x64@13.1.0": "@next/swc-linux-arm64-gnu@13.4.4":
version "13.1.0" version "13.4.4"
resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-13.1.0.tgz#2efe163863cf8a72d71b9f72b31b6c1c94f7213a" resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.4.tgz#f2e071f38e8a6cdadf507cc5d28956f73360d064"
integrity sha512-3S3iQqJIysklj0Q9gnanuYMzF8H9p+fUVhvSHxVVLcKH4HsE8EGddNkXsaOyznL1kC6vGKw7h6uz1ojaXEafCA== integrity sha512-+KZnDeMShYkpkqAvGCEDeqYTRADJXc6SY1jWXz+Uo6qWQO/Jd9CoyhTJwRSxvQA16MoYzvILkGaDqirkRNctyA==
"@next/swc-freebsd-x64@13.1.0": "@next/swc-linux-arm64-musl@13.4.4":
version "13.1.0" version "13.4.4"
resolved "https://registry.yarnpkg.com/@next/swc-freebsd-x64/-/swc-freebsd-x64-13.1.0.tgz#bf80e44d0aae021104a4c80f1056d0b13f1b7ba7" resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.4.tgz#23bf75c544e54562bc24ec1be036e4bd9cf89e2c"
integrity sha512-wAgzwm/em48GIuWq3OYr0BpncMy7c+UA3hsyX+xKh/vb/sOIpQly7JTa+GNdk17s7kprhMfsgzPG3da36NLpkA== integrity sha512-evC1twrny2XDT4uOftoubZvW3EG0zs0ZxMwEtu/dDGVRO5n5pT48S8qqEIBGBUZYu/Xx4zzpOkIxx1vpWdE+9A==
"@next/swc-linux-arm-gnueabihf@13.1.0": "@next/swc-linux-x64-gnu@13.4.4":
version "13.1.0" version "13.4.4"
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-13.1.0.tgz#71ecac0482bfc7ad4bbe15ae7609cc8119772a0c" resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.4.tgz#bd42590950a01957952206f89cf5622e7c9e4196"
integrity sha512-Cr2hzL7ad+4nj9KrR1Cz1RDcsWa61X6I7gc6PToRYIY4gL480Sijq19xo7dlXQPnr1viVzbNiNnNXZASHv7uvw== integrity sha512-PX706XcCHr2FfkyhP2lpf+pX/tUvq6/ke7JYnnr0ykNdEMo+sb7cC/o91gnURh4sPYSiZJhsF2gbIqg9rciOHQ==
"@next/swc-linux-arm64-gnu@13.1.0": "@next/swc-linux-x64-musl@13.4.4":
version "13.1.0" version "13.4.4"
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.1.0.tgz#212c2e3f092c8de9a97bbb13a2754271ec38ad90" resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.4.tgz#907d81feb1abec3daec0ecb61e3f39b56e7aeafe"
integrity sha512-EjCIKfeZB9h72evL2yGNwBvE5Im96Zn7o2zxImlvCiUYb/xXDqn4hzhck035BSP3g3sGDLfijFTE1wKRyXIk4w== integrity sha512-TKUUx3Ftd95JlHV6XagEnqpT204Y+IsEa3awaYIjayn0MOGjgKZMZibqarK3B1FsMSPaieJf2FEAcu9z0yT5aA==
"@next/swc-linux-arm64-musl@13.1.0": "@next/swc-win32-arm64-msvc@13.4.4":
version "13.1.0" version "13.4.4"
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.1.0.tgz#950c757b929b84aa359f3f9c3a5d90704d5c8f45" resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.4.tgz#1d754d2bb10bdf9907c0acc83711438697c3b5fe"
integrity sha512-WAsZtCtPXlz/7/bnW9ryw856xEun+c6xSwZwbcvrMxtcSiW3z0LD91Nsj3AkexsjRtBjeEpNeVtDExqF2VKKSA== integrity sha512-FP8AadgSq4+HPtim7WBkCMGbhr5vh9FePXiWx9+YOdjwdQocwoCK5ZVC3OW8oh3TWth6iJ0AXJ/yQ1q1cwSZ3A==
"@next/swc-linux-x64-gnu@13.1.0": "@next/swc-win32-ia32-msvc@13.4.4":
version "13.1.0" version "13.4.4"
resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.1.0.tgz#f60582199b2d2ba763deb3355e205733bf408c20" resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.4.tgz#77b2c7f7534b675d46e46301869e08d504d23956"
integrity sha512-Tjd5gieI3X9vPce5yF+GsQxOl0jwUkyOrTR1g5PQr+bT/9Qos/yPL48H1L5ayEp0hxgLVPW7skGal7lVnAoVEQ== integrity sha512-3WekVmtuA2MCdcAOrgrI+PuFiFURtSyyrN1I3UPtS0ckR2HtLqyqmS334Eulf15g1/bdwMteePdK363X/Y9JMg==
"@next/swc-linux-x64-musl@13.1.0": "@next/swc-win32-x64-msvc@13.4.4":
version "13.1.0" version "13.4.4"
resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.1.0.tgz#3a95a243521f5d07985aa6308200d3834e73282b" resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.4.tgz#faab69239f8a9d0be7cd473e65f5a07735ef7b0e"
integrity sha512-H9UMEQv40e9pkgdX4mCms0dDf2dimmZ6WXhDTWF/yIh9icgcsHaP73BJ9IFlgvh80wLiUgWZ3LAX4vXnXzidmg== integrity sha512-AHRITu/CrlQ+qzoqQtEMfaTu7GHaQ6bziQln/pVWpOYC1wU+Mq6VQQFlsDtMCnDztPZtppAXdvvbNS7pcfRzlw==
"@next/swc-win32-arm64-msvc@13.1.0":
version "13.1.0"
resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.1.0.tgz#7cc6d467c769dff23ecb9c3953b4429e4ca9f3f8"
integrity sha512-LFFIKjW/cPl4wvG8HF/6oYPJZ+Jy32G3FUflC8UW1Od6W9yOSEvadhk9fMyDZN4cgsNOcVc3uVSMpcuuCpbDGw==
"@next/swc-win32-ia32-msvc@13.1.0":
version "13.1.0"
resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.1.0.tgz#7bf1ed77d80b86c04cea12ecdf6ac4bf54b5160c"
integrity sha512-MBLaoHZSenMdxhB3Ww1VNEhjyPT3uLjzAi5Ygk48LLLbOGu5KxQolhINRrqGuJWqJRNWSJ9JSFBfJrZwQzrUew==
"@next/swc-win32-x64-msvc@13.1.0":
version "13.1.0"
resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.1.0.tgz#2e23251a84b95182249132480d55fb122a7ae4f0"
integrity sha512-fFTfIQvnmpbKoyh4v3ezlGqtERlgc2Sx8qJwPuYqoVi0V08wCx9wp2Iq1CINxP3UMHkEeNX7gYpDOd+9Cw9EiQ==
"@ngraveio/bc-ur@^1.0.0", "@ngraveio/bc-ur@^1.1.5": "@ngraveio/bc-ur@^1.0.0", "@ngraveio/bc-ur@^1.1.5":
version "1.1.6" version "1.1.6"
@ -1973,10 +1958,10 @@
resolved "https://registry.yarnpkg.com/@supercharge/promise-pool/-/promise-pool-2.4.0.tgz#6050eea8c2d7f92ddd4ddc582ee328b15c034ad3" resolved "https://registry.yarnpkg.com/@supercharge/promise-pool/-/promise-pool-2.4.0.tgz#6050eea8c2d7f92ddd4ddc582ee328b15c034ad3"
integrity sha512-O9CMipBlq5OObdt1uKJGIzm9cdjpPWfj+a+Zw9EgWKxaMNHKC7EU7X9taj3H0EGQNLOSq2jAcOa3EzxlfHsD6w== integrity sha512-O9CMipBlq5OObdt1uKJGIzm9cdjpPWfj+a+Zw9EgWKxaMNHKC7EU7X9taj3H0EGQNLOSq2jAcOa3EzxlfHsD6w==
"@swc/helpers@0.4.14": "@swc/helpers@0.5.1":
version "0.4.14" version "0.5.1"
resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.4.14.tgz#1352ac6d95e3617ccb7c1498ff019654f1e12a74" resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.5.1.tgz#e9031491aa3f26bfcc974a67f48bd456c8a5357a"
integrity sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw== integrity sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==
dependencies: dependencies:
tslib "^2.4.0" tslib "^2.4.0"
@ -3603,6 +3588,13 @@ bufferutil@^4.0.1, bufferutil@^4.0.6:
dependencies: dependencies:
node-gyp-build "^4.3.0" node-gyp-build "^4.3.0"
busboy@1.6.0:
version "1.6.0"
resolved "https://registry.yarnpkg.com/busboy/-/busboy-1.6.0.tgz#966ea36a9502e43cdb9146962523b92f531f6893"
integrity sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==
dependencies:
streamsearch "^1.1.0"
call-bind@^1.0.0, call-bind@^1.0.2: call-bind@^1.0.0, call-bind@^1.0.2:
version "1.0.2" version "1.0.2"
resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
@ -6451,30 +6443,28 @@ next-themes@0.1.1:
resolved "https://registry.yarnpkg.com/next-themes/-/next-themes-0.1.1.tgz#122113a458bf1d1be5ffed66778ab924c106f82a" resolved "https://registry.yarnpkg.com/next-themes/-/next-themes-0.1.1.tgz#122113a458bf1d1be5ffed66778ab924c106f82a"
integrity sha512-Iqxt6rhS/KfK/iHJ0tfFjTcdLEAI0AgwFuAFrMwLOPK5e+MI3I+fzyvBoS+VaOS+NldUiazurhgwYhrfV0VXsQ== integrity sha512-Iqxt6rhS/KfK/iHJ0tfFjTcdLEAI0AgwFuAFrMwLOPK5e+MI3I+fzyvBoS+VaOS+NldUiazurhgwYhrfV0VXsQ==
next@13.1.0: next@13.4.4:
version "13.1.0" version "13.4.4"
resolved "https://registry.yarnpkg.com/next/-/next-13.1.0.tgz#fe65eff07dbdb08c8c925876cffdaf59d4552b32" resolved "https://registry.yarnpkg.com/next/-/next-13.4.4.tgz#d1027c8d77f4c51be0b39f671b4820db03c93e60"
integrity sha512-lQMZH1V94L5IL/WaihQkTYabSY73aqgrkGPJB5uz+2O3ES4I3losV/maXLY7l7x5e+oNyE9N81upNQ8uRsR5/A== integrity sha512-C5S0ysM0Ily9McL4Jb48nOQHT1BukOWI59uC3X/xCMlYIh9rJZCv7nzG92J6e1cOBqQbKovlpgvHWFmz4eKKEA==
dependencies: dependencies:
"@next/env" "13.1.0" "@next/env" "13.4.4"
"@swc/helpers" "0.4.14" "@swc/helpers" "0.5.1"
busboy "1.6.0"
caniuse-lite "^1.0.30001406" caniuse-lite "^1.0.30001406"
postcss "8.4.14" postcss "8.4.14"
styled-jsx "5.1.1" styled-jsx "5.1.1"
zod "3.21.4"
optionalDependencies: optionalDependencies:
"@next/swc-android-arm-eabi" "13.1.0" "@next/swc-darwin-arm64" "13.4.4"
"@next/swc-android-arm64" "13.1.0" "@next/swc-darwin-x64" "13.4.4"
"@next/swc-darwin-arm64" "13.1.0" "@next/swc-linux-arm64-gnu" "13.4.4"
"@next/swc-darwin-x64" "13.1.0" "@next/swc-linux-arm64-musl" "13.4.4"
"@next/swc-freebsd-x64" "13.1.0" "@next/swc-linux-x64-gnu" "13.4.4"
"@next/swc-linux-arm-gnueabihf" "13.1.0" "@next/swc-linux-x64-musl" "13.4.4"
"@next/swc-linux-arm64-gnu" "13.1.0" "@next/swc-win32-arm64-msvc" "13.4.4"
"@next/swc-linux-arm64-musl" "13.1.0" "@next/swc-win32-ia32-msvc" "13.4.4"
"@next/swc-linux-x64-gnu" "13.1.0" "@next/swc-win32-x64-msvc" "13.4.4"
"@next/swc-linux-x64-musl" "13.1.0"
"@next/swc-win32-arm64-msvc" "13.1.0"
"@next/swc-win32-ia32-msvc" "13.1.0"
"@next/swc-win32-x64-msvc" "13.1.0"
no-case@^3.0.4: no-case@^3.0.4:
version "3.0.4" version "3.0.4"
@ -7818,6 +7808,11 @@ stream-transform@^3.2.2:
resolved "https://registry.yarnpkg.com/stream-transform/-/stream-transform-3.2.2.tgz#3d6083d6582eddac233645fcee574fc56ebeb184" resolved "https://registry.yarnpkg.com/stream-transform/-/stream-transform-3.2.2.tgz#3d6083d6582eddac233645fcee574fc56ebeb184"
integrity sha512-DHZQPNxvjU2qdQlGcpitn8pkJHQVTqdshtgXaLz6Vc5VCAognbGuuwGS5ugeqGVnyw8j4h89QcV8cwm0D1+V0A== integrity sha512-DHZQPNxvjU2qdQlGcpitn8pkJHQVTqdshtgXaLz6Vc5VCAognbGuuwGS5ugeqGVnyw8j4h89QcV8cwm0D1+V0A==
streamsearch@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/streamsearch/-/streamsearch-1.1.0.tgz#404dd1e2247ca94af554e841a8ef0eaa238da764"
integrity sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==
strict-uri-encode@^2.0.0: strict-uri-encode@^2.0.0:
version "2.0.0" version "2.0.0"
resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz#b9c7330c7042862f6b142dc274bbcc5866ce3546" resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz#b9c7330c7042862f6b142dc274bbcc5866ce3546"
@ -8986,6 +8981,11 @@ yocto-queue@^0.1.0:
resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"
integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==
zod@3.21.4:
version "3.21.4"
resolved "https://registry.yarnpkg.com/zod/-/zod-3.21.4.tgz#10882231d992519f0a10b5dd58a38c9dabbb64db"
integrity sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==
zustand@4.1.3: zustand@4.1.3:
version "4.1.3" version "4.1.3"
resolved "https://registry.yarnpkg.com/zustand/-/zustand-4.1.3.tgz#72bc4c0ed8ed906fbd92c7c20cde8dd6114c018f" resolved "https://registry.yarnpkg.com/zustand/-/zustand-4.1.3.tgz#72bc4c0ed8ed906fbd92c7c20cde8dd6114c018f"