-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* add terms and conditions pdf * add contact information
- Loading branch information
1 parent
811703d
commit b57558d
Showing
4 changed files
with
96 additions
and
20 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
<script setup lang="ts"> | ||
import { ref } from 'vue' | ||
import { BuildingOffice2Icon, EnvelopeIcon, PhoneIcon } from '@heroicons/vue/24/outline' | ||
import ModalWindow from '@/components/Common/ModalWindow.vue' | ||
const isContactVisible = ref(false) | ||
</script> | ||
|
||
<template> | ||
<footer class="bg-white/50 shadow w-full mt-auto"> | ||
<div class="w-full mx-auto max-w-screen-xl p-4 md:flex md:items-center md:justify-between"> | ||
|
@@ -8,22 +16,89 @@ | |
<ul class="flex flex-wrap items-center mt-3 text-sm font-medium text-gray-500 sm:mt-0"> | ||
<li> | ||
<a | ||
href="#" | ||
href="/terms_and_conditions.pdf" | ||
target="_blank" | ||
class="hover:underline me-4 md:me-6" | ||
> | ||
Polityka prywatności | ||
</a> | ||
</li> | ||
|
||
<li> | ||
<a | ||
href="#" | ||
class="hover:underline" | ||
<p | ||
class="hover:underline cursor-pointer" | ||
@click="isContactVisible = true" | ||
> | ||
Kontakt | ||
</a> | ||
</p> | ||
</li> | ||
</ul> | ||
</div> | ||
</footer> | ||
|
||
<ModalWindow | ||
v-model="isContactVisible" | ||
title="Kontakt" | ||
> | ||
<dl class="mt-2 space-y-4 text-base/7 text-gray-600"> | ||
<div class="flex gap-x-4"> | ||
<dt class="flex-none"> | ||
<span class="sr-only"> | ||
Adres | ||
</span> | ||
|
||
<BuildingOffice2Icon | ||
class="h-7 w-6 text-black" | ||
aria-hidden="true" | ||
/> | ||
</dt> | ||
|
||
<dd>ul. Sejmowa 5A, 59-220 Legnica</dd> | ||
</div> | ||
|
||
<div class="flex gap-x-4"> | ||
<dt class="flex-none"> | ||
<span class="sr-only"> | ||
Telefon | ||
</span> | ||
|
||
<PhoneIcon | ||
class="h-7 w-6 text-black" | ||
aria-hidden="true" | ||
/> | ||
</dt> | ||
|
||
<dd> | ||
<a | ||
class="hover:text-primary" | ||
href="tel:76-723-21-50" | ||
> | ||
76-723-21-50 | ||
</a> | ||
</dd> | ||
</div> | ||
|
||
<div class="flex gap-x-4"> | ||
<dt class="flex-none"> | ||
<span class="sr-only"> | ||
</span> | ||
|
||
<EnvelopeIcon | ||
class="h-7 w-6 text-black" | ||
aria-hidden="true" | ||
/> | ||
</dt> | ||
|
||
<dd> | ||
<a | ||
class="hover:text-primary" | ||
href="mailto:[email protected]" | ||
> | ||
[email protected] | ||
</a> | ||
</dd> | ||
</div> | ||
</dl> | ||
</ModalWindow> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters