Skip to content

Commit

Permalink
Merge branch 'main' into improvement/pr_template
Browse files Browse the repository at this point in the history
  • Loading branch information
nsdonato authored Jan 27, 2024
2 parents 886f5ca + 52e2b04 commit 2bd6d7e
Show file tree
Hide file tree
Showing 9 changed files with 834 additions and 9 deletions.
4 changes: 2 additions & 2 deletions components/sidebar-menu/sidebar-menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ export const SidebarMenu = async ({ className }: SidebarMenuProps) => {

return (
<nav className={className}>
<ul className='menu rounded-box shadow-lg'>
<ul className='menu rounded-box shadow-lg grid gap-1'>
{menu.map(menuItem => (
<li key={menuItem.name}>
{menuItem.name === MAIN_MENU ? (
<LinkWrapper href='/'> {menuItem.name}</LinkWrapper>
) : (
<details open>
<summary>{menuItem.name}</summary>
<ul>
<ul className='grid gap-1'>
{menuItem.items?.length === 1 ? (
<SidebarMenuItem items={[]} />
) : (
Expand Down
4 changes: 2 additions & 2 deletions components/sidebar-menu/sidebar-submenu-item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ type SidebarSubMenuItemProps = {

export const SidebarSubMenuItem = ({ submenu }: SidebarSubMenuItemProps) => {
return (
<li>
<li className='grid gap-1'>
<details>
<summary>{submenu.name}</summary>
<ul>
<ul className='grid gap-1'>
<SidebarMenuItem items={submenu.items} />
</ul>
</details>
Expand Down
14 changes: 14 additions & 0 deletions docs/frontend/components_library.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ description: 'Hoy en día hay muchas librerias que nos resuelven el diseño de u

contributors:
- github_username: 'nsdonato'
- github_username: 'gonzalochale'

submenu:
- imgPlaceholder: Shadcn
Expand Down Expand Up @@ -109,4 +110,17 @@ submenu:
createdAt: '2024-01-14T00:00:00Z'
updatedAt: '2024-01-14T00:00:00Z'
videos: []

- imgPlaceholder: InKit UI
titleCard: ''
links:
- type: 'Web'
url: https://inkit-ui.vercel.app/
cover:
src: ''
height: 80
width: 190
createdAt: '2024-01-27T00:00:00Z'
updatedAt: '2024-01-27T00:00:00Z'
videos: []
---
17 changes: 17 additions & 0 deletions docs/frontend/deploys.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ description:

contributors:
- github_username: 'nsdonato'
- github_username: 'webzma'

submenu:
- imgPlaceholder: Vercel
Expand Down Expand Up @@ -48,4 +49,20 @@ submenu:
height: 80
width: 190
videos: []

- imgPlaceholder: Github Pages
titleCard: ''
links:
- type: 'Web'
url: https://pages.github.com/
createdAt: '2024-01-26T00:00:00Z'
updatedAt: '2024-01-26T00:00:00Z'
cover:
src: /frontend/github.svg
height: 80
width: 190
videos:
- tooltip: 'Sube tu web a github gratis'
url: https://www.youtube.com/shorts/qprqCT9qjgo

---
2 changes: 1 addition & 1 deletion docs/frontend/domains.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Fuentes
title: Dominios
description: 'Donde comprar tu dominio para tu proyecto'

contributors:
Expand Down
14 changes: 14 additions & 0 deletions docs/frontend/fonts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ En alguna de las herramientas también podés encontrar combinaciones de fuentes

contributors:
- github_username: 'nsdonato'
- github_username: 'maadeval'

submenu:
- imgPlaceholder: Fontpair
Expand Down Expand Up @@ -45,4 +46,17 @@ submenu:
createdAt: '2024-01-14T00:00:00Z'
updatedAt: '2024-01-14T00:00:00Z'
videos: []

- imgPlaceholder: Fontsource
titleCard: ''
links:
- type: 'Web'
url: https://fontsource.org/
cover:
src: ''
height: 80
width: 190
createdAt: '2024-01-26T00:00:00Z'
updatedAt: '2024-01-26T00:00:00Z'
videos: []
---
6 changes: 3 additions & 3 deletions docs/menu.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ menu:
- name: Deploys
url: '/docs/frontend/deploys'
createdAt: '2024-01-14T00:00:00Z'
updatedAt: '2024-01-14T00:00:00Z'
updatedAt: '2024-01-27T00:00:00Z'

- name: Colores
url: '/docs/frontend/colors_palette'
Expand All @@ -29,7 +29,7 @@ menu:
- name: Fuentes
url: '/docs/frontend/fonts'
createdAt: '2024-01-14T00:00:00Z'
updatedAt: '2024-01-14T00:00:00Z'
updatedAt: '2024-01-26T00:00:00Z'

- name: Forms
url: '/docs/frontend/forms'
Expand All @@ -44,7 +44,7 @@ menu:
- name: Componentes
url: '/docs/frontend/components_library'
createdAt: '2024-01-14T00:00:00Z'
updatedAt: '2024-01-14T00:00:00Z'
updatedAt: '2024-01-27T00:00:00Z'

- name: Dominios
url: '/docs/frontend/domains'
Expand Down
Loading

0 comments on commit 2bd6d7e

Please sign in to comment.