Skip to content

Commit 2c461cc

Browse files
committed
Deployed new version of the page to production
1 parent 0c82fca commit 2c461cc

File tree

6 files changed

+149
-32
lines changed

6 files changed

+149
-32
lines changed

docs/assets/index-DlOycYDe.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/images/favicon.png

758 Bytes
Loading

docs/index.html

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
<!doctype html>
2+
<html lang="es">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1" />
6+
<title>Seriesfera</title>
7+
<link rel="preconnect" href="https://fonts.googleapis.com" />
8+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
9+
<link
10+
href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap"
11+
rel="stylesheet"
12+
/>
13+
<script src="./js/main.js" defer></script>
14+
<link rel="stylesheet" crossorigin href="./assets/index-DlOycYDe.css">
15+
</head>
16+
17+
<body>
18+
<header class="header">
19+
<h1 class="header__title">Seriesfera: Buscador de series</h1>
20+
</header>
21+
22+
23+
<main class="main">
24+
<div class="search-and-favs">
25+
<section class="search">
26+
<form class="search__form">
27+
<label for="search" class="visually-hidden">Buscar series</label>
28+
<input
29+
class="js_searchInput search__input"
30+
type="text"
31+
name="search"
32+
id="search"
33+
autocomplete="off"
34+
/>
35+
<button class="js_searchBtn btn" type="submit">Buscar</button>
36+
</form>
37+
</section>
38+
39+
<section class="favorites">
40+
<h2 class="favorites__title">Mis series favoritas</h2>
41+
<ul class="js_favoritesUl favorites__list"></ul>
42+
<button class="js_favoritesRemoveAll favorites__remove btn">
43+
Borrar todo
44+
</button>
45+
</section>
46+
</div>
47+
48+
<section class="results">
49+
<ul class="js_resultsUl results__list"></ul>
50+
</section>
51+
</main>
52+
53+
<footer class="footer">
54+
<p class="footer__copy">
55+
&copy; 2026. Hecho por <strong>Cris</strong> con 🩵
56+
</p>
57+
<p class="footer__api">
58+
Datos proporcionados por <strong>TVMaze API.</strong>
59+
</p>
60+
<a
61+
class="footer__link"
62+
href="https://github.com/Adalab/modulo-2-evaluacion-final-CrisOnWeb"
63+
target="_blank"
64+
rel="noopener"
65+
><svg
66+
xmlns="http://www.w3.org/2000/svg"
67+
width="20"
68+
height="20"
69+
viewBox="0 0 24 24"
70+
fill="none"
71+
stroke="currentColor"
72+
stroke-width="2"
73+
stroke-linecap="round"
74+
stroke-linejoin="round"
75+
class="icon-github"
76+
aria-hidden="true"
77+
>
78+
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
79+
<path
80+
d="M9 19c-4.3 1.4 -4.3 -2.5 -6 -3m12 5v-3.5c0 -1 .1 -1.4 -.5 -2c2.8 -.3 5.5 -1.4 5.5 -6a4.6 4.6 0 0 0 -1.3 -3.2a4.2 4.2 0 0 0 -.1 -3.2s-1.1 -.3 -3.5 1.3a12.3 12.3 0 0 0 -6.2 0c-2.4 -1.6 -3.5 -1.3 -3.5 -1.3a4.2 4.2 0 0 0 -.1 3.2a4.6 4.6 0 0 0 -1.3 3.2c0 4.6 2.7 5.7 5.5 6c-.6 .6 -.6 1.2 -.5 2v3.5"
81+
/>
82+
</svg>
83+
84+
<span>Ver en GitHub</span></a
85+
>
86+
</footer>
87+
88+
</body>
89+
</html>

docs/js/main.js

Lines changed: 25 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/robots.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
User-agent: *
2+
Disallow: /

package.json

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
11
{
2-
"name": "adalab-web-starter-kit",
3-
"version": "4.0.0",
4-
"description": "Adalab web starter kit",
5-
"homepage": "https://github.com/adalab/adalab-web-starter-kit",
6-
"bugs": {
7-
"url": "https://github.com/Adalab/adalab-web-starter-kit/issues"
8-
},
9-
"repository": {
10-
"type": "git",
11-
"url": "git+ssh://git@github.com/Adalab/adalab-web-starter-kit.git"
12-
},
13-
"license": "MIT",
14-
"author": "Adalab",
15-
"type": "module",
16-
"main": "vite.config.js",
17-
"scripts": {
18-
"start": "vite",
19-
"dev": "vite",
20-
"build": "vite build --emptyOutDir",
21-
"docs": "vite build --emptyOutDir",
22-
"preview": "vite preview",
23-
"push-docs": "npm run deploy",
24-
"deploy": "vite build --emptyOutDir && git add docs && git commit -m 'Deployed new version of the page to production' && git push"
25-
},
26-
"devDependencies": {
27-
"@vituum/vite-plugin-concat": "^1.1.1",
28-
"sass": "^1.97.3",
29-
"sharp": "^0.34.5",
30-
"vite": "^7.3.1",
31-
"vite-plugin-html-inject": "^1.1.2",
32-
"vite-plugin-image-optimizer": "^2.0.3"
33-
}
2+
"name": "adalab-web-starter-kit",
3+
"version": "4.0.0",
4+
"description": "Adalab web starter kit",
5+
"homepage": "https://github.com/adalab/adalab-web-starter-kit",
6+
"bugs": {
7+
"url": "https://github.com/Adalab/adalab-web-starter-kit/issues"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+ssh://git@github.com/Adalab/adalab-web-starter-kit.git"
12+
},
13+
"license": "MIT",
14+
"author": "Adalab",
15+
"type": "module",
16+
"main": "vite.config.js",
17+
"scripts": {
18+
"start": "vite",
19+
"dev": "vite",
20+
"build": "vite build --emptyOutDir",
21+
"docs": "vite build --emptyOutDir",
22+
"preview": "vite preview",
23+
"push-docs": "npm run deploy",
24+
"deploy": "vite build --emptyOutDir && git add docs && git commit -m \"Deployed new version of the page to production\" && git push"
25+
},
26+
"devDependencies": {
27+
"@vituum/vite-plugin-concat": "^1.1.1",
28+
"sass": "^1.97.3",
29+
"sharp": "^0.34.5",
30+
"vite": "^7.3.1",
31+
"vite-plugin-html-inject": "^1.1.2",
32+
"vite-plugin-image-optimizer": "^2.0.3"
33+
}
3434
}

0 commit comments

Comments
 (0)