O projeto foi solicitado para criação de uma Landing page para apresentar a Lucy, uma IA desenvolvida para interação com comunidades do discord.
src/
├── assets
│ ├── 404-bg.jpeg
│ ├── astronaut.png
│ ├── logo-monkey.svg
│ ├── lucy-cta-1
│ ├── lucy-cta-1.png
│ ├── lucy-cta-2.png
│ ├── lucy-cta-3.png
│ ├── lucy.png
│ └── moon.jpg
├── components
│ ├── compatibility.astro
│ ├── content-section.astro
│ ├── features.astro
│ ├── footer.astro
│ ├── github-corner.astro
│ ├── header.astro
│ ├── hero-image.astro
│ ├── intro.astro
│ ├── showcase.astro
│ ├── splash.astro
│ ├── starfield.astro
│ └── theme-switcher.astro
├── data
│ └── showcase
│ ├── images
│ │ ├── astro-docs.png
│ │ ├── corset.png
│ │ ├── designcember.png
│ │ ├── divriots.png
│ │ ├── firebase-blog.png
│ │ └── polinations.png
│ ├── index.ts
│ └── sites.json
├── env.d.ts
├── icons
│ ├── frameworks
│ │ ├── lit.svg
│ │ ├── preact.svg
│ │ ├── react.svg
│ │ ├── solid.svg
│ │ ├── svelte.svg
│ │ └── vue.svg
│ ├── logomark.svg
│ ├── platforms
│ │ ├── netlify.svg
│ │ ├── render.svg
│ │ └── vercel.svg
│ ├── theme
│ │ ├── dark.svg
│ │ └── light.svg
│ └── wordmark.svg
├── pages
│ ├── 404.astro
│ ├── index.astro
│ ├── lucy.astro
│ └── style.css
├── styles
│ ├── global.css
│ ├── index.css
│ └── theme.css
└── types.ts
Clone o Projeto:
git clone https://link-to-project
Acesse o diretório que você clonou:
cd my-project
Instale as dependências do projeto:
yarn
Rode o projeto no localhost:
yarn dev