All materials
Footer.jsx
jsxFooter.jsx
export default function Footer() {
return (
<footer className="bg-stone-800 text-stone-400 text-sm py-6">
<div className="max-w-6xl mx-auto px-4 text-center">
<p>Himalaya Horizon Treks · Thamel, Kathmandu, Nepal</p>
<p className="mt-1">Guided treks to Annapurna, Langtang, Everest, and beyond</p>
</div>
</footer>
);
}