File tree 6 files changed +37
-2
lines changed
6 files changed +37
-2
lines changed Original file line number Diff line number Diff line change 1
1
/** @type {import('next').NextConfig } */
2
- const nextConfig = { }
2
+ const nextConfig = {
3
+ images : {
4
+ remotePatterns : [
5
+ {
6
+ protocol : 'https' ,
7
+ hostname : '**.traveler.es' ,
8
+ } ,
9
+ ] ,
10
+ }
11
+ }
3
12
4
13
module . exports = nextConfig
Original file line number Diff line number Diff line change 1
1
2
2
function page ( ) {
3
3
return (
4
- < h1 > Blog</ h1 >
4
+ < >
5
+ < h1 > Blog</ h1 >
6
+ < p > Información tomada de la página
7
+ < a href = "https://www.traveler.es/galerias/paisajes-monumentos-pueblos-imprescindibles-andalucia" >
8
+ 20 paisajes de Andalucía que nunca olvidarás
9
+ </ a >
10
+ </ p >
11
+ </ >
5
12
)
6
13
}
7
14
Original file line number Diff line number Diff line change 1
1
function page ( ) {
2
2
return (
3
+ < >
3
4
< h1 > Blog / Primer Post</ h1 >
5
+ < h2 > Visitamos Arcos de la Frontera</ h2 >
6
+ < img src = "https://media.traveler.es/photos/64830e6515aaea8842e302b1/master/w_1920%2Cc_limit/JGWN5N.jpg" />
7
+ </ >
4
8
)
5
9
}
6
10
Original file line number Diff line number Diff line change 1
1
function page ( ) {
2
2
return (
3
+ < >
3
4
< h1 > Blog / Segundo Post</ h1 >
5
+ < h2 > Visitamos Las marismas del Odiel</ h2 >
6
+ < img src = "https://media.traveler.es/photos/64830c8115aaea8842e302ab/master/w_1920%2Cc_limit/2PG1HWD.jpg" />
7
+ </ >
8
+
9
+
4
10
)
5
11
}
6
12
Original file line number Diff line number Diff line change 1
1
function page ( ) {
2
2
return (
3
+ < >
3
4
< h1 > Blog / Tercer Post</ h1 >
5
+ < h2 > Visitamos La gruta de las Mararillas</ h2 >
6
+ < img src = "https://media.traveler.es/photos/64830cc715aaea8842e302ad/master/w_1920%2Cc_limit/2PG1H7X.jpg" />
7
+ </ >
4
8
)
5
9
}
6
10
Original file line number Diff line number Diff line change @@ -25,6 +25,11 @@ main {
25
25
min-height : 100% ;
26
26
}
27
27
28
+ img {
29
+ aspect-ratio : 1.5 ;
30
+ height : 80vh ;
31
+ }
32
+
28
33
.bg-lavanda {
29
34
background-color : Lavender;
30
35
}
You can’t perform that action at this time.
0 commit comments