Compare commits

..

7 Commits

Author SHA1 Message Date
José Conde
4151b1aabc adding google verification 2023-10-24 17:22:58 +02:00
José Conde
a30b67dd64 Merge branch 'main' of http://192.168.1.112:3000/arhuako/tayronafoods-web 2023-09-26 12:27:07 +02:00
b12c099933 Merge branch 'rama_carmen' 2023-09-26 12:01:20 +02:00
José Conde
13767cfbf6 Merge branch 'rama_carmen' 2023-09-23 20:27:49 +02:00
José Conde
f05387178d router scroll behavior 2023-09-23 19:22:55 +02:00
José Conde
a7a87a7922 Merge branch 'rama_carmen' 2023-09-23 19:18:34 +02:00
José Conde
3c8c732155 fotos 2023-09-23 19:16:37 +02:00
11 changed files with 6 additions and 1 deletions

View File

@ -8,6 +8,7 @@
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400&family=Righteous&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="google-site-verification" content="1tB5liDjoXLObZitT8kwhYfGWbANW_3cMBBVk-Sbvgo" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 MiB

After

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.0 MiB

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.6 MiB

After

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 MiB

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 MiB

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 MiB

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 MiB

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.4 MiB

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 MiB

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -70,7 +70,11 @@ const router = createRouter({
name: 'widerrufsrecht',
component: Widerrufsrecht,
},
]
],
scrollBehavior(to, from, savedPosition) {
// always scroll to top
return { top: 0 }
},
});
export default router;