97 lines
4.6 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

'use client'
import Image from 'next/image'
import Link from 'next/link'
import styles from './Footer.module.css'
export default function Footer() {
const metatronCubeLink = "https://metatroncubesolutions.com/";
return (
<footer className={styles.footer} id="contact">
<div className={styles.container}>
{/* Brand Column */}
<div className={`${styles.column} ${styles.brandColumn}`}>
{/* Logo updated to use Image and Link */}
<div className={styles.logo}>
<Link href="/" onClick={() => window.scrollTo(0, 0)}>
<Image
src="/images/antalya-logo.png"
alt="Antalya Restaurant"
width={200}
height={200}
className={styles.logoImage} // Must be styled in Footer.module.css
priority
/>
</Link>
</div>
{/* End of Logo update */}
<p className={styles.description}>
Discover the essence of fusion cuisine in the heart of Ontario at Antalya Restaurant.
Our carefully curated menu offers a delicious selection from sizzling kebabs and succulent doners to authentic pides, sandwiches, and wraps.
</p>
<div className={styles.socialIcons}>
<div className={styles.icon}>f</div>
<div className={styles.icon}>t</div>
<div className={styles.icon}>in</div>
</div>
</div>
{/* Quick Links Column */}
<div className={styles.column}>
<h3 className={styles.heading}>Quick Links</h3>
{/* Removed the Bootstrap classes (row, col-lg-6) as this is a CSS Modules file and those classes are not defined. Reverting to a single list structure for stability. */}
<ul className={styles.linkList}>
<li className={styles.linkItem}><a href="/" className={styles.link}>Home</a></li>
<li className={styles.linkItem}><a href="/about" className={styles.link}>About</a></li>
<li className={styles.linkItem}><a href="/gallery" className={styles.link}>Gallery</a></li>
<li className={styles.linkItem}><a href="/menu" className={styles.link}>Menu</a></li>
<li className={styles.linkItem}><a href="/blog" className={styles.link}>Blog</a></li>
<li className={styles.linkItem}><a href="/contact" className={styles.link}>Contact</a></li>
</ul>
</div>
{/* Location Column */}
<div className={styles.column}>
<h3 className={styles.heading}>Location</h3>
<div className={styles.contactInfo}>
<p style={{ marginBottom: '1rem' }}>
1187 Fischer-Hallman Rd #435, Kitchener, ON N2E 4H9<br />
1860 Appleby Line, Burlington, ON L7L 7H7
</p>
<div className={styles.contactRow}>
<span>📞</span> <span>Kitchener: 519-581-6363</span>
</div>
<div className={styles.contactRow}>
<span>📞</span> <span>Burlington: 289-313-9838</span>
</div>
<div className={styles.contactRow}>
<span></span> <span>hello@antalyarestaurant.ca</span>
</div>
<h3 className={styles.heading} style={{ marginTop: '1.5rem' }}>Opening Hours</h3>
<p>
Sunday-Thursday 11am-10pm<br />
Friday-Saturday 11am-11pm
</p>
</div>
</div>
</div>
<div className={styles.copyright}>
© Copyright 2025 Antalya Restaurant | Powered by{' '}
<a
href={metatronCubeLink}
target="_blank"
rel="noopener noreferrer"
>
MetatronCube
</a>{' '}
All Rights Reserved
</div>
</footer>
)
}