refactor: update sidebar URLs and adjust layout padding for consistency

This commit is contained in:
SirRobert-1 2025-04-24 11:20:57 -06:00
parent e715ac234e
commit 07d5881759
4 changed files with 6 additions and 7 deletions

View File

@ -20,7 +20,6 @@ const data = {
navMain: [
{
title: "Alumnos",
url: "/",
items: [
{
title: "Agregar manualmente",
@ -34,7 +33,6 @@ const data = {
},
{
title: "Cursos",
url: "#",
items: [
{
title: "Agregar curso manualmente",

View File

@ -13,7 +13,7 @@ const CursosManual = () => {
return (
<Layout>
<div className="w-[60vw] flex flex-col items-end justify-center">
<div className="w-[60vw] pt-10 flex flex-col items-end justify-center">
<div className="bg-white p-8 font-sans text-center w-[70%]">
<h1 className="text-xl font-semibold mb-4 text-black">
Nuevo alumno

View File

@ -21,7 +21,7 @@ const CursosManual = () => {
return (
<Layout>
<div className="w-[60vw] flex flex-col items-end justify-center">
<div className="w-[60vw] pt-10 flex flex-col items-end justify-center">
<div className="bg-white p-8 font-sans text-center w-[70%]">
<h1 className="text-xl font-semibold mb-4 text-black">Nuevo curso</h1>
<Input

View File

@ -3,9 +3,10 @@ import Layout from "@/components/layout/Layout";
export default function Home() {
return (
<Layout>
<div className="flex flex-col items-center justify-center min-h-screen py-10">
<h1 className="text-3xl font-bold mb-5">Productos juguetería</h1>
<div className="flex flex-wrap p-5">Hola</div>
<div className="w-[60vw] pt-10 flex flex-col items-center justify-center">
<h1 className="text-3xl font-bold pt-20 text-black">
Productos juguetería
</h1>
</div>
</Layout>
);