osm_my_commerce/osm_my_commerce/app.vue

35 lines
1.1 KiB
Vue
Raw Normal View History

2023-03-02 11:31:37 +01:00
<template>
<div>
<AppHeader/>
<main class="bg-neutral-200">
<div class="IBMPlexMono-SemiBold_font__QEQVx p-6 w-3/4 m-auto min-w-max">
<h1 class="text-slate-900 text-5xl tracking-tight font-extrabold">OSM My commerce</h1>
<h2 class="text-slate-900 text-2xl mb-10">
Renseignez votre commerce sur OSM
</h2>
<img src="/img/OSM-FR.svg" alt="OSM fr" width="3em" height="3em"/>
<img class="rounded-2xl" src="/img/carte_demo.png" alt="carte"/>
<div class="card mt-10">
<p>
<label for="search_poi" class="text-4xl font-bold">
Effectuer une recherche
</label>
</p>
<input id="search_poi"
type="search"
class="h-10 px-6 rounded-md border-2"
placeholder="tour eiffel"
autofocus="autofocus">
<button class="h-10 px-6 rounded-md bg-black text-white" type="submit">
Rechercher
</button>
</div>
</div>
</main>
</div>
</template>