refactor: update sidebar URLs and adjust layout padding for consistency
This commit is contained in:
parent
e715ac234e
commit
07d5881759
diplomas/src
|
@ -20,7 +20,6 @@ const data = {
|
||||||
navMain: [
|
navMain: [
|
||||||
{
|
{
|
||||||
title: "Alumnos",
|
title: "Alumnos",
|
||||||
url: "/",
|
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
title: "Agregar manualmente",
|
title: "Agregar manualmente",
|
||||||
|
@ -34,7 +33,6 @@ const data = {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Cursos",
|
title: "Cursos",
|
||||||
url: "#",
|
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
title: "Agregar curso manualmente",
|
title: "Agregar curso manualmente",
|
||||||
|
|
|
@ -13,7 +13,7 @@ const CursosManual = () => {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Layout>
|
<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%]">
|
<div className="bg-white p-8 font-sans text-center w-[70%]">
|
||||||
<h1 className="text-xl font-semibold mb-4 text-black">
|
<h1 className="text-xl font-semibold mb-4 text-black">
|
||||||
Nuevo alumno
|
Nuevo alumno
|
||||||
|
|
|
@ -21,7 +21,7 @@ const CursosManual = () => {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Layout>
|
<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%]">
|
<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>
|
<h1 className="text-xl font-semibold mb-4 text-black">Nuevo curso</h1>
|
||||||
<Input
|
<Input
|
||||||
|
|
|
@ -3,9 +3,10 @@ import Layout from "@/components/layout/Layout";
|
||||||
export default function Home() {
|
export default function Home() {
|
||||||
return (
|
return (
|
||||||
<Layout>
|
<Layout>
|
||||||
<div className="flex flex-col items-center justify-center min-h-screen py-10">
|
<div className="w-[60vw] pt-10 flex flex-col items-center justify-center">
|
||||||
<h1 className="text-3xl font-bold mb-5">Productos juguetería</h1>
|
<h1 className="text-3xl font-bold pt-20 text-black">
|
||||||
<div className="flex flex-wrap p-5">Hola</div>
|
Productos juguetería
|
||||||
|
</h1>
|
||||||
</div>
|
</div>
|
||||||
</Layout>
|
</Layout>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue