yarn init -y
yarn add next react react-dom
yarn add @skynexui/components
npx gitignore node
fetch('https://api.github.com/users/lucasrmagalhaes')
.then(async (respostaDoServidor) => {
const respostaEsperada = await respostaDoServidor.json();
console.log(respostaEsperada);
})
yarn add @supabase/supabase-js
supabaseClient
.from('tabela')
.select('*')
.then((dados) => {
console.log('Dados da consulta: ', dados);
});
NEXT_PUBLIC_BG
SUPABASE_URL
SUPABASE_ANON_KEY
NEXT_PUBLIC_SMEAGOL