Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

blog de html hecho en componentes de react agregue t odas las funciones de js que teniamos hechas en la carpeta utils #5

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

Codemonster808
Copy link

…es de js que teniamos hechas en la carpeta utils

…es de js que teniamos hechas en la carpeta utils
Comment on lines 21 to 134
<article></article>

</section>
<section class="post-list-container">
<nav class="tags-filter">
<div class="filter-list-scroll-hider">
<ul class="nav-list filter-list">
<li class="is-active-filter"><a class="filter paragraph paragraph-sm font-bold"
href="#">Todos</a></li>
<li><a class="filter paragraph paragraph-sm font-bold" href="#">Airdrops</a></li>
<li><a class="filter paragraph paragraph-sm font-bold" href="#">Gems</a></li>
<li><a class="filter paragraph paragraph-sm font-bold" href="#">Web3writing</a></li>
<li><a class="filter paragraph paragraph-sm font-bold" href="#">Web development</a></li>

</ul>

</div>
<input class="input" type="search" placeholder="Buscar">
<div class="button-container">
<button>Atras</button>
<button>Adelante</button>
</div>

</nav>
<div class="post-list">
<article class="card">
<img src="https://images.unsplash.com/photo-1634704784915-aacf363b021f?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=870&q=80" alt="Imagen de un post">
<section>
<div class="card-content">
<header>
<div class="tags">
<span class="tag tag-primary"><a href="#">Airdropss</a></span>
<span class="tag tag-primary"><a href="#">Web3writing</a></span>
</div>
<h2 class="heading heading-sm font-bold"></h2>
<time class="help-text paragraph paragraph-xs font-regular" datetime="2022-01-24">
2022-01-24
</time>
</header>
<p class="paragraph paragraph-sm font-regular">Airdrops? blockchains mas importantes para y como farmear...</p>
</div>
<footer>
<div class="author">
<img src="https://i.pravatar.cc/300" alt="Avatar de un autor">
<span class="paragraph paragraph-xs font-bold">TSAD</span>
</div>
<span class="help-text paragraph paragraph-xs font-regular">
7 min lectura
</span>
</footer>
</section>
</article>
<article class="card">
<img src="https://images.unsplash.com/photo-1503642551022-c011aafb3c88?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=870&q=80" alt="Imagen de un post">
<section>
<div class="card-content">
<header>
<div class="tags">
<span class="tag tag-primary"><a href="#">Web3writing</a></span>
<span class="tag tag-primary"><a href="#">Copywriting</a></span>
</div>
<h2 class="heading heading-sm font-bold">
<time class="help-text paragraph paragraph-xs font-regular" datetime="2023-01-24">
2023-01-24
</time>
</header>
<p class="paragraph paragraph-sm font-regular">Como comenzar una carrera como escritor sobre temas de web3 ?...</p>
</div>
<footer>
<div class="author">
<img src="https://i.pravatar.cc/300" alt="Avatar de un autor">
<span class="paragraph paragraph-xs font-bold">TSAD</span>
</div>
<span class="help-text paragraph paragraph-xs font-regular">
7 min lectura
</section>
</article>
<article class="card">
<img src="https://images.unsplash.com/photo-1500134697073-dc9b3b4409c5?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=870&q=80" alt="Imagen de un post">
<section>
<div class="card-content">
<header>
<div class="tags">
<span class="tag tag-primary"><a href="#">Latinoamerica</a></span>
<span class="tag tag-primary"><a href="#">Crypto</a></span>
</div>
<h2 class="heading heading-sm font-bold">
<time class="help-text paragraph paragraph-xs font-regular" datetime="2023-01-24">
2023-01-24
</time>
</header>
<p class="paragraph paragraph-sm font-regular">Que impacto tienen hoy en dia el acceso a los cryptoactivos respecto a la movilidad social en Latam ?...</p>
</div>
<footer>
<div class="author">
<img src="https://i.pravatar.cc/300" alt="Avatar de un autor">
<span class="paragraph paragraph-xs font-bold">TSAD</span>
</div>
<span class="help-text paragraph paragraph-xs font-regular">
7 min lectura
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hola! Veo que has colocado todo el código HTML aquí en el index. Sin embargo, aquí solo debería estar el root para que el main.jsx coloque o pinte los componentes que creaste

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hola realmente los componentes están es en app.jsx que es donde están los componentes y al final del html tenemos el div del root

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Exacto. Sin embargo, no deberías tener nada más en el index, solo el root. Intenté dejar solamente el div con el root, pero la página quedó en blanco, lo que indica que tus componentes no se están colocando correctamente.

Copy link
Contributor

@MauBedoya MauBedoya left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Parece estar correcto el funcionamiento de vite con react, pero hay varios estilos que no están coincidiendo con las clases que parece que deberían, por ejemplo en App.css tienes: .MainNavbar pero en el componente MainNavbar la className esta como main-navbar, y así varios mas en distintos archivos, quizá por eso no se esta cargando del todo bien tu layout:
Screenshot from 2023-05-08 21-30-01
No estoy seguro de si ocurrió algo al momento de migrar o si esta pensado así y estoy revisando algo mal, seria solo que me confirmes eso y ya estaría el approve.

return (
<Fragment>
<section className="post-list-container">
<div className="post-card-container">
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

este div parece no estar recibiendo ningún estilo, parece que se podría eliminar sin que afecte

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants