Initial commit: Shahi Kitchen premium website

- Royal cream + gold theme
- Playful animated hero with chef mascot
- Advanced menu with sidebar + video hover
- Multilingual support (EN, SV, HI, UR)
- Cart system with WhatsApp ordering
- Real restaurant photos integration
- Responsive design with proper navbar
This commit is contained in:
Zeeshan Khan
2026-06-01 15:14:19 +02:00
parent edd906d893
commit 56fe68eb48
314 changed files with 4129 additions and 111 deletions
+112
View File
@@ -0,0 +1,112 @@
/**
* GLOBAL FOOTER
*
* Appears at the bottom of every page.
*
* Contains:
* - Brand + short tagline
* - Both physical locations with full addresses + phone/email
* - Opening hours (different per branch — Backaplan is more variable)
* - Quick links + social profiles
*
* Note: The phone numbers and addresses here are the canonical source.
* If the restaurant ever changes them, update this file + the contact section
* on the homepage + the locations page.
*/
import Link from "next/link";
export default function Footer() {
return (
<footer className="bg-[#F5F1E9] border-t border-[#EDE6D9] pt-14 pb-10 text-[#6B665F]">
<div className="max-w-7xl mx-auto px-6">
<div className="grid grid-cols-1 md:grid-cols-4 gap-y-12 gap-x-8">
{/* Brand */}
<div>
<div className="flex items-center gap-3 mb-4">
<div className="w-10 h-10 rounded-xl overflow-hidden border border-[#c99a2e]/30 bg-white p-0.5 shadow-sm">
<img
src="/images/logo-shahi-chef-icon.jpg"
alt="Shahi Kitchen Chef Logo"
className="w-full h-full object-contain"
/>
</div>
<span className="text-[#2C2A26] font-medium tracking-[-0.3px]">Shahi Kitchen</span>
</div>
<p className="text-sm leading-relaxed">
Authentic Indian &amp; Pakistani cuisine in Gothenburg since 2016.
</p>
</div>
{/* Contact - Both Locations */}
<div>
<div className="text-[#2C2A26] text-sm tracking-[1.5px] mb-4">OUR LOCATIONS</div>
<div className="space-y-4 text-sm">
<div>
<div className="font-medium text-[#2C2A26]">Shahi Kitchen (Askim / Sisjön)</div>
<div>Datavägen 10A, 436 32 Askim</div>
</div>
<div>
<div className="font-medium text-[#2C2A26]">Shahi Sweets (Backaplan)</div>
<div>Krokegårdsgatan 5, 417 30 Göteborg</div>
</div>
<div>
<a href="tel:0739381089" className="block hover:text-[#B38B4D] transition-colors">
0739-381089
</a>
<a href="mailto:hello@shahikitchen.se" className="block hover:text-[#B38B4D] transition-colors">
hello@shahikitchen.se
</a>
</div>
</div>
</div>
{/* Hours */}
<div>
<div className="text-[#2C2A26] text-sm tracking-[1.5px] mb-4">OPENING HOURS</div>
<div className="text-sm space-y-1">
<div><span className="font-medium">Askim:</span> MonSun 11:0021:00</div>
<div><span className="font-medium">Backaplan:</span> Check Instagram for current hours</div>
</div>
</div>
{/* Quick Links + Social */}
<div>
<div className="text-[#2C2A26] text-sm tracking-[1.5px] mb-4">EXPLORE</div>
<div className="flex flex-col gap-1.5 text-sm mb-8">
<Link href="/" className="hover:text-[#B38B4D] transition-colors">Home</Link>
<Link href="/menu" className="hover:text-[#B38B4D] transition-colors">Menu</Link>
<Link href="/#experience" className="hover:text-[#B38B4D] transition-colors">Our Experience</Link>
<Link href="/#contact" className="hover:text-[#B38B4D] transition-colors">Contact &amp; Reserve</Link>
</div>
<div className="text-[#2C2A26] text-sm tracking-[1.5px] mb-3">FOLLOW US</div>
<div className="flex gap-5 text-sm">
<a
href="https://www.instagram.com/Shahikitchen/"
target="_blank"
rel="noopener noreferrer"
className="hover:text-[#B38B4D] transition-colors"
>
Instagram
</a>
<a
href="https://www.facebook.com/shahikitchengbg/"
target="_blank"
rel="noopener noreferrer"
className="hover:text-[#B38B4D] transition-colors"
>
Facebook
</a>
</div>
</div>
</div>
<div className="mt-14 pt-8 border-t border-[#EDE6D9] text-xs tracking-widest flex flex-col md:flex-row md:items-center justify-between gap-y-2 text-[#8A8478]">
<div>© {new Date().getFullYear()} SHAHI KITCHEN GOTHENBURG. ALL RIGHTS RESERVED.</div>
<div>Made with tradition and heart.</div>
</div>
</div>
</footer>
);
}