chore: pre-chore

This commit is contained in:
Leifer Mendez
2023-02-04 18:03:57 +01:00
parent 99b9b17f52
commit 2ecc41f3f0
82 changed files with 411 additions and 904 deletions

View File

@@ -8,28 +8,18 @@ export default component$(() => {
return (
<header>
<div class="logo">
<a
href="https://github.com/codigoencasa/bot-whatsapp"
target="_blank"
title="qwik"
>
<a href="https://github.com/codigoencasa/bot-whatsapp" target="_blank" title="qwik">
<BotLogo />
</a>
</div>
<ul>
<li>
<a
href="https://github.com/codigoencasa/bot-whatsapp"
target="_blank"
>
<a href="https://github.com/codigoencasa/bot-whatsapp" target="_blank">
Docs
</a>
</li>
<li>
<a
href="https://github.com/codigoencasa/bot-whatsapp/tree/main/starters/apps"
target="_blank"
>
<a href="https://github.com/codigoencasa/bot-whatsapp/tree/main/starters/apps" target="_blank">
Examples
</a>
</li>

View File

@@ -1,11 +1,5 @@
export const QwikLogo = () => (
<svg
width="100"
height="35"
viewBox="0 0 167 53"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<svg width="100" height="35" viewBox="0 0 167 53" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M81.9545 46.5859H75.5513V35.4045C73.4363 36.8579 71.0496 37.5749 68.4884 37.5749C65.0151 37.5749 62.4344 36.6253 60.8239 34.6487C59.2134 32.6915 58.3984 29.2034 58.3984 24.2231C58.3984 19.1266 59.3492 15.5997 61.2702 13.5456C63.23 11.4721 66.3734 10.4644 70.7004 10.4644C74.7946 10.4644 78.5201 11.0264 81.9545 12.131V46.5859ZM75.5513 16.278C74.096 15.8323 72.4661 15.6191 70.7004 15.6191C68.5272 15.6191 66.9749 16.1811 66.1017 17.3244C65.2479 18.4871 64.7823 20.6962 64.7823 23.9712C64.7823 27.0524 65.1897 29.1065 66.0435 30.2304C66.8973 31.335 68.3719 31.897 70.5452 31.897C73.3781 31.897 75.5513 30.7343 75.5513 29.2809V16.278Z"
fill="black"

View File

@@ -1,9 +1,4 @@
import {
component$,
useClientEffect$,
useStore,
useStylesScoped$,
} from '@builder.io/qwik'
import { component$, useClientEffect$, useStore, useStylesScoped$ } from '@builder.io/qwik'
import style from './qr.css?inline'
export const QR = component$(() => {
@@ -20,12 +15,7 @@ export const QR = component$(() => {
return (
<div>
<img
width={350}
height={350}
src={'qr.png?time=' + state.count}
alt="QR"
/>
<img width={350} height={350} src={'qr.png?time=' + state.count} alt="QR" />
</div>
)
})

View File

@@ -10,10 +10,7 @@ export const RouterHead = component$(() => {
<title>{head.title}</title>
<link rel="canonical" href={loc.href} />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
{head.meta.map((m) => (