fix: 404 Pages and responsiveness
This commit is contained in:
@@ -3,33 +3,13 @@
|
||||
import { Phone, MapPin, Mail } from '@lucide/svelte';
|
||||
import { SIIcon } from '@willingtonortiz/svelte-simple-icons';
|
||||
import { siFacebook, siInstagram, siTiktok } from 'simple-icons';
|
||||
|
||||
let { user } = $props();
|
||||
</script>
|
||||
|
||||
<footer class="mx-auto w-full bg-primary/10 px-12 pt-10 pb-4 max-md:px-4">
|
||||
<div itemscope itemtype="https://schema.org/LocalBusiness" class="hidden">
|
||||
<div itemprop="name">Korean Skin Care and Beauty Clinic</div>
|
||||
<div>Phone: <span itemprop="telephone">+977 984936576</span></div>
|
||||
<div>
|
||||
Url: <span itemprop="url"
|
||||
><a href="koreanskincareandclinic.com">koreanskincareandclinic.com</a></span
|
||||
>
|
||||
</div>
|
||||
|
||||
<meta
|
||||
itemprop="openingHours"
|
||||
style="display: none"
|
||||
datetime="Mo,Tu,We,Th,Fr,Sa,Su 10:00-19:00"
|
||||
/>
|
||||
<div itemtype="http://schema.org/PostalAddress" itemscope="" itemprop="address">
|
||||
<div itemprop="streetAddress">City Center</div>
|
||||
<div>
|
||||
<span itemprop="addressLocality">Kathmandu</span>, <span itemprop="addressRegion">KTM</span>
|
||||
<span itemprop="postalCode">44600</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
class="grid w-full grid-cols-4 items-start justify-between gap-12 max-md:flex max-md:flex-col max-md:gap-4"
|
||||
class="mx-auto grid w-full max-w-screen-2xl grid-cols-4 items-start justify-between gap-12 max-md:flex max-md:flex-col max-md:gap-4"
|
||||
>
|
||||
<div>
|
||||
<div class="flex flex-col gap-4">
|
||||
@@ -62,13 +42,13 @@
|
||||
<p class="text-lg font-semibold tracking-tight">About KSCBC</p>
|
||||
<ul class="flex flex-col gap-2">
|
||||
<li>
|
||||
<a href="/about-us" class="text-sm">About us</a>
|
||||
<a href="https://www.kscclinicnepal.com/" target="_blank" class="text-sm">About us</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/about-us" class="text-sm">My Account</a>
|
||||
<a href={user?.authenticated ? '/profile' : '/login'} class="text-sm">My Account</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/about-us" class="text-sm">Privacy & Policy</a>
|
||||
<a href="/privacy-policy" class="text-sm">Privacy & Policy</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/contact-us" class="text-sm">Contact Us</a>
|
||||
@@ -99,7 +79,7 @@
|
||||
</div>
|
||||
<hr class="mt-6 border border-primary/10" />
|
||||
<div
|
||||
class="mt-4 flex items-center justify-between max-md:flex-col max-md:items-start max-md:gap-4"
|
||||
class="mx-auto mt-4 flex max-w-screen-2xl items-center justify-between max-md:flex-col max-md:items-start max-md:gap-4"
|
||||
>
|
||||
<p class="text-sm">© {new Date().getFullYear()} Korean Skin Care & Beauty Clinic</p>
|
||||
<ul class="flex items-center gap-4">
|
||||
@@ -120,4 +100,26 @@
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div itemscope itemtype="https://schema.org/LocalBusiness" class="hidden">
|
||||
<div itemprop="name">Korean Skin Care and Beauty Clinic</div>
|
||||
<div>Phone: <span itemprop="telephone">+977 984936576</span></div>
|
||||
<div>
|
||||
Url: <span itemprop="url"
|
||||
><a href="koreanskincareandclinic.com">koreanskincareandclinic.com</a></span
|
||||
>
|
||||
</div>
|
||||
|
||||
<meta
|
||||
itemprop="openingHours"
|
||||
style="display: none"
|
||||
datetime="Mo,Tu,We,Th,Fr,Sa,Su 10:00-19:00"
|
||||
/>
|
||||
<div itemtype="http://schema.org/PostalAddress" itemscope="" itemprop="address">
|
||||
<div itemprop="streetAddress">City Center</div>
|
||||
<div>
|
||||
<span itemprop="addressLocality">Kathmandu</span>, <span itemprop="addressRegion">KTM</span>
|
||||
<span itemprop="postalCode">44600</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
Reference in New Issue
Block a user