[site][lg] - integrate demenech changes into monorepo

This commit is contained in:
Luccas Mateus de Medeiros Gomes
2023-04-11 08:19:58 -03:00
parent fda6c4b827
commit 97c1dc0d59
32 changed files with 8815 additions and 319 deletions

View File

@@ -55,7 +55,7 @@ These are the default routes set up in the "starter" app.
You can create new routes in `/pages` directory where each file is associated with a route based on its name. We suggest using [Next.JS docs][] for more detailed information.
[Next.JS docs]: https://nextjs.org/docs/basic-features/pages
[next.js docs]: https://nextjs.org/docs/basic-features/pages
### Data fetching
@@ -205,10 +205,8 @@ export default function Org({ variables }) {
}
className="h-5 w-5 mr-2 inline-block"
/>
<Link href={`/@${organization.name}`}>
<a className="font-semibold text-primary underline">
<Link href={`/@${organization.name}`} className="font-semibold text-primary underline">
{organization.title || organization.name}
</a>
</Link>
</>
) : (
@@ -217,4 +215,4 @@ export default function Org({ variables }) {
</>
);
}
```
```