Skip to content

Commit

Permalink
test paths
Browse files Browse the repository at this point in the history
  • Loading branch information
PhMoraiis committed Nov 12, 2024
1 parent f7a8908 commit b4db363
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions docs/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ import starlightImageZoomPlugin from 'starlight-image-zoom';

// https://astro.build/config
export default defineConfig({
site: 'https://mdsreq-fga-unb.github.io/2024.2-T03-Submin',
site: 'https://mdsreq-fga-unb.github.io',
base: '/2024.2-T03-Submin/docs',
integrations: [
starlight({
plugins: [starlightImageZoomPlugin()],
title: 'Submin',
logo: {
replacesTitle: true,
dark: './src/assets/dark.svg',
light: './src/assets/light.svg',
dark: '/src/assets/dark.svg',
light: '/src/assets/light.svg',
},
social: {
github: 'https://github.com/mdsreq-fga-unb/2024.2-T03-Submin',
Expand All @@ -41,7 +41,7 @@ export default defineConfig({
],
},
],
customCss: ['/2024.2-T03-Submin/docs/src/tailwind.css'],
customCss: ['/src/tailwind.css'],
}),
tailwind({ applyBaseStyles: false }),
],
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/index.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Bem vindo à Documentação do Submin
description: .
description: Acesse agora mesmo a nossa documentação e saiba tudo sobre o projeto!
template: splash
hero:
title: |
Expand Down
6 changes: 3 additions & 3 deletions docs/src/content/docs/intro/introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ import { LinkCard, Icon, CardGrid } from '@astrojs/starlight/components'
<div class="hidden dark:block">
<img
class="hidden dark:block rounded-md"
src="../../src/assets/hero-dark.svg"
src="/src/assets/hero-dark.svg"
alt="Logo Submin"
/>
</div>

<div class="block dark:hidden">
<img
class="flex dark:hidden rounded-md"
src="../../src/assets/hero-light.svg"
src="/src/assets/hero-light.svg"
alt="Logo Submin"
/>
</div>
Expand All @@ -29,7 +29,7 @@ Selecione a unidade que deseja começar.
<CardGrid stagger>
<LinkCard
title="Visão de Produto e Projeto"
href="/unidade1/cenario"
href="/unidade-1/cenario"
description= "Unidade 1"
>
</LinkCard>
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/unidade-1/cenario.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ uma solução integrada e eficiente para o mercado como um todo.

<img
className="block"
src="../../src/assets/fishbone.png"
src="/src/assets/fishbone.png"
alt="Diagrama Espinha de Peixe - Ishikawa"
/>

Expand Down

0 comments on commit b4db363

Please sign in to comment.