Skip to content

Commit

Permalink
var fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
motocarota committed Apr 13, 2024
1 parent bf88f8a commit cd448b4
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/lib/Contacts.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<h1 class="mt-5">Contatti</h1>
<div class="flex justify-center gap-4 flex-wrap">
<Card>
<h4>orario di apertura</h4>
<h4>Orario di Apertura</h4>
<Table noborder={true}>
<TableBody>
{#each ORARIO as o}
Expand Down
2 changes: 1 addition & 1 deletion src/lib/Footer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<footer class="bg-white text-slate-800 p pb-10">
<div class="max-w-screen-lg py-10 mx-auto font-thin text-center">
<h1 class="mb-4">Delfino bianco</h1>
<h1 class="mb-4">Delfino Bianco</h1>
<p class="mb-6 text-xl">Ristorante Bar Pizzeria</p>
<p>via XX Settembre 12, 16039 Sestri Levante (Ge) ITALY</p>
<p>Tel. +39 0185450837 - 328 1467737</p>
Expand Down
6 changes: 3 additions & 3 deletions src/lib/WineMenu.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
import { Card } from "flowbite-svelte";
const links = [
{ id: 'menu', label: 'La Carta' },
{ id: 'pizza', label: 'La pizzeria' },
{ id: 'bar', label: 'Bar menú & cocktail' },
{ id: 'wine', label: 'Carta del vino' },
{ id: 'pizza', label: 'La Pizzeria' },
{ id: 'bar', label: 'Bar Menú & Cocktail' },
{ id: 'wine', label: 'Carta del Vino' },
]
</script>

Expand Down
14 changes: 7 additions & 7 deletions src/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
export const POSITION_LINK = "https://www.google.com/maps/place/Delfino+Bianco/@44.2725357,9.3933299,17.93z/data=!3m1!5s0x12d4970bdbce96cd:0xced735c3747e80ae!4m6!3m5!1s0x12d4970bdb507d75:0x102c3af42da41526!8m2!3d44.2726976!4d9.3952319!16s%2Fg%2F11bwqmq7pm?entry=ttu"

export const ORARIO = [
{ day: "lunedì", from: "17:30", to: "23:00" },
{ day: "martedì", from: "17:30", to: "23:00" },
{ day: "mercoledì", from: "17:30", to: "23:00" },
{ day: "giovedì", from: "17:30", to: "23:00" },
{ day: "venerdì", from: "17:30", to: "23:00" },
{ day: "sabato", from: "17:30", to: "23:00" },
{ day: "domenica", from: "17:30", to: "23:00" },
{ day: "Lunedì", from: "17:30", to: "23:00" },
{ day: "Martedì", from: "17:30", to: "23:00" },
{ day: "Mercoledì", from: "17:30", to: "23:00" },
{ day: "Giovedì", from: "17:30", to: "23:00" },
{ day: "Venerdì", from: "17:30", to: "23:00" },
{ day: "Sabato", from: "17:30", to: "23:00" },
{ day: "Domenica", from: "17:30", to: "23:00" },
]

export const FEATURES = [
Expand Down
2 changes: 1 addition & 1 deletion src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<Hero />
<!-- <Navigation /> -->
<FwImage image="sestri" />
<Gallery />
<WineMenu />
<Gallery />
<Contacts />
<Features />

0 comments on commit cd448b4

Please sign in to comment.