mirror of
				https://github.com/theoludwig/theoludwig.git
				synced 2025-11-04 00:19:01 +01:00 
			
		
		
		
	perf: remove unnecessary fonts weight
This commit is contained in:
		@@ -1,6 +1,7 @@
 | 
				
			|||||||
import { useCallback, useEffect, useState } from 'react'
 | 
					import { useCallback, useEffect, useState } from 'react'
 | 
				
			||||||
import useTranslation from 'next-translate/useTranslation'
 | 
					import useTranslation from 'next-translate/useTranslation'
 | 
				
			||||||
import setLanguage from 'next-translate/setLanguage'
 | 
					import setLanguage from 'next-translate/setLanguage'
 | 
				
			||||||
 | 
					import classNames from 'classnames'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import { Arrow } from './Arrow'
 | 
					import { Arrow } from './Arrow'
 | 
				
			||||||
import { LanguageFlag } from './LanguageFlag'
 | 
					import { LanguageFlag } from './LanguageFlag'
 | 
				
			||||||
@@ -41,10 +42,13 @@ export const Language: React.FC = () => {
 | 
				
			|||||||
        <LanguageFlag language={currentLanguage} />
 | 
					        <LanguageFlag language={currentLanguage} />
 | 
				
			||||||
        <Arrow />
 | 
					        <Arrow />
 | 
				
			||||||
      </div>
 | 
					      </div>
 | 
				
			||||||
      {!hiddenMenu && (
 | 
					
 | 
				
			||||||
      <ul
 | 
					      <ul
 | 
				
			||||||
        data-cy='languages-list'
 | 
					        data-cy='languages-list'
 | 
				
			||||||
          className='flex flex-col justify-center items-center absolute p-0 top-14 z-10 w-24 mt-3 mr-4 rounded-lg list-none shadow-light dark:shadow-dark bg-white dark:bg-black'
 | 
					        className={classNames(
 | 
				
			||||||
 | 
					          'flex flex-col justify-center items-center absolute p-0 top-14 z-10 w-24 mt-3 mr-4 rounded-lg list-none shadow-light dark:shadow-dark bg-white dark:bg-black',
 | 
				
			||||||
 | 
					          { hidden: hiddenMenu }
 | 
				
			||||||
 | 
					        )}
 | 
				
			||||||
      >
 | 
					      >
 | 
				
			||||||
        {i18n.locales.map((language, index) => {
 | 
					        {i18n.locales.map((language, index) => {
 | 
				
			||||||
          if (language === currentLanguage) {
 | 
					          if (language === currentLanguage) {
 | 
				
			||||||
@@ -61,7 +65,6 @@ export const Language: React.FC = () => {
 | 
				
			|||||||
          )
 | 
					          )
 | 
				
			||||||
        })}
 | 
					        })}
 | 
				
			||||||
      </ul>
 | 
					      </ul>
 | 
				
			||||||
      )}
 | 
					 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
  )
 | 
					  )
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -11,7 +11,7 @@ export const InterestParagraph: React.FC<InterestParagraphProps> = (props) => {
 | 
				
			|||||||
  return (
 | 
					  return (
 | 
				
			||||||
    <>
 | 
					    <>
 | 
				
			||||||
      <p className='text-center my-6 text-gray dark:text-gray-dark'>
 | 
					      <p className='text-center my-6 text-gray dark:text-gray-dark'>
 | 
				
			||||||
        <strong className='text-yellow font-medium text-lg dark:text-yellow-dark'>
 | 
					        <strong className='text-yellow font-semibold text-lg dark:text-yellow-dark'>
 | 
				
			||||||
          {title}
 | 
					          {title}
 | 
				
			||||||
        </strong>
 | 
					        </strong>
 | 
				
			||||||
        <br />
 | 
					        <br />
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -5,7 +5,7 @@ import DivloLogo from 'public/images/divlo_logo.png'
 | 
				
			|||||||
export const ProfileLogo: React.FC = () => {
 | 
					export const ProfileLogo: React.FC = () => {
 | 
				
			||||||
  return (
 | 
					  return (
 | 
				
			||||||
    <div className='px-2 py-6 max-w-[370px] max-h-[370px]'>
 | 
					    <div className='px-2 py-6 max-w-[370px] max-h-[370px]'>
 | 
				
			||||||
      <Image src={DivloLogo} alt='Divlo' />
 | 
					      <Image src={DivloLogo} alt='Divlo' priority />
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
  )
 | 
					  )
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -6,7 +6,6 @@ import UniversalCookie from 'universal-cookie'
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
import 'tailwindcss/tailwind.css'
 | 
					import 'tailwindcss/tailwind.css'
 | 
				
			||||||
import '@fontsource/montserrat/400.css'
 | 
					import '@fontsource/montserrat/400.css'
 | 
				
			||||||
import '@fontsource/montserrat/500.css'
 | 
					 | 
				
			||||||
import '@fontsource/montserrat/600.css'
 | 
					import '@fontsource/montserrat/600.css'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const universalCookie = new UniversalCookie()
 | 
					const universalCookie = new UniversalCookie()
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user