Я пытаюсь загрузить локальный шрифт, как показано ниже, но я получаю ошибку Cannot find module '@/landing/fonts/Gotham-Bold.ttf'
и понятия не имею, что на самом деле не так в этом пути.
моя структура папок выглядит следующим образом, и кодЯ работаю над LandingPage.tsx
![enter image description here](https://i.stack.imgur.com/rsKFZ.png)
import { createGlobalStyle } from 'styled-components';
import font from './fonts/Gotham-Bold.ttf'
const Gotham = createGlobalStyle`
@font-face {
font-family: 'Gotham';
font-style: normal;
font-weight: bold;
src:
url(${font}) format('truetype'),
}
`