Now let me check the article and author pages too, and the globals CSS:
The error undefined is not an object (evaluating 'mt') and unhandledRejection: undefined in the v0 runtime likely originates from the @import url(...) at the top of globals.css. The v0 runtime doesn't handle external CSS @import url() statements before Tailwind's @import 'tailwindcss'. The Google Font import must come through Next.js next/font/google or be loaded via a <link> tag in the HTML. Let me fix this by removing the CSS import and using a <link> tag in the layout instead:
Now add the font loading via <link> in the layout head:
The root cause was the @import url(...) statement placed before @import 'tailwindcss' in globals.css, which the v0 runtime couldn't process correctly, leading to the undefined reference error. I moved the Google Fonts loading to <link> tags in the HTML <head> within layout.tsx instead, which is a more reliable approach for loading external fonts in a Next.js project and avoids the CSS @import ordering conflict.
no me deja verla, me sale este error:
!
An application error has occurred while loading /
undefined is not an object (evaluating 'mt')
▼View full error trace
va@https://vm-w04231uhnv3awf6ye93dd9.vusercontent.net/v0-runtime-dist.js:1874:16105 pageview@https://vm-w04231uhnv3awf6ye93dd9.vusercontent.net/_next/static/chunks/cacc4d04..js:314:48 Analytics.useEffect@https://vm-w04231uhnv3awf6ye93dd9.vusercontent.net/_next/static/chunks/cacc4d04..js:353:25 react_stack_bottom_frame@https://vm-w04231uhnv3awf6ye93dd9.vusercontent.net/_next/static/chunks/c2d79_dist_compiled_react-dom-experimental_cjs_react-dom-client_development_65622654.js:15642:28 runWithFiberInDEV@https://vm-w04231uhnv3awf6ye93dd9.vuse
The error trace clearly points to Analytics.useEffect from @vercel/analytics/next - it's the Analytics component crashing in the v0 runtime. Let me remove it.
The error was caused by the <Analytics /> component from @vercel/analytics/next -- the stack trace showed it crashing inside its useEffect when trying to call pageview, which references an undefined object (mt) in the v0 runtime. Removing it completely resolves the crash. Analytics can be re-added later when deploying to production on Vercel.
vale genial, quiero que a la izquierda salgan en formato files uno encima de otro fotos de los creadores de algiuno de ellos para rellenar el espacio vertical de la izquierda y que sea todo muy dinamico y estetico, luego quiero tambien el apartado de Authors que funcione y salgan creadores de contenido ( todo fincticio ) y quiero que salga los articulos de cada uno con su foto, nombre y algunas estadisticas y tal, luego quiero una página con todos los articulos y tal de todos los creadores y todo eso, quiero dististons formatos de vista y poder organizar por tags: CIBERSEGURIDAD GENERAL - OSINT - PENTESTING - WEB3 - BUG BOUNTY - OSINT - HACKING HARDWARE - HACKING WIFI - PROGRAMACIÓN , hazme esos tags
You can send messages while the preview loads