logo updated

This commit is contained in:
Selvi 2026-06-11 18:03:43 +05:30
parent e0dc97b57d
commit 98006741af
6 changed files with 40 additions and 6 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

BIN
public/images/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -1,3 +1,4 @@
import Image from 'next/image';
import Link from 'next/link'; import Link from 'next/link';
import styles from './Footer.module.css'; import styles from './Footer.module.css';
@ -9,8 +10,14 @@ export default function Footer() {
{/* Column 1: Brand & Socials */} {/* Column 1: Brand & Socials */}
<div className={styles.brand}> <div className={styles.brand}>
<Link href="/" className={styles.logo}> <Link href="/" className={styles.logo}>
<span className={styles.logoLeaf}>🌿</span> <Image
<span className={styles.logoText}>My Dosa Place</span> src="/images/footer-logo.png"
alt="My Dosa Place logo"
width={40}
height={40}
className={styles.logoLeaf}
/>
{/* <span className={styles.logoText}>My Dosa Place</span> */}
</Link> </Link>
<p className={styles.brandDesc}> <p className={styles.brandDesc}>
Bringing the authentic taste of South India to Waterloo since 1980. Bringing the authentic taste of South India to Waterloo since 1980.

View File

@ -31,7 +31,17 @@
} }
.logoLeaf { .logoLeaf {
font-size: 1.5rem; display: inline-flex;
width: 250px;
height: 45px;
line-height: 0;
}
.logoLeaf img {
display: block;
width: 100%;
height: 100%;
object-fit: contain;
} }
.logoText { .logoText {

View File

@ -2,6 +2,7 @@
import { useState } from 'react'; import { useState } from 'react';
import Link from 'next/link'; import Link from 'next/link';
import Image from 'next/image';
import styles from './Navbar.module.css'; import styles from './Navbar.module.css';
export default function Navbar() { export default function Navbar() {
@ -12,8 +13,14 @@ export default function Navbar() {
<div className={styles.navInner}> <div className={styles.navInner}>
{/* Logo */} {/* Logo */}
<Link href="/" className={styles.logo}> <Link href="/" className={styles.logo}>
<span className={styles.logoLeaf}>🌿</span> <Image
<span className={styles.logoText}>My Dosa Place</span> src="/images/logo.png"
alt="My Dosa Place logo"
width={40}
height={40}
className={styles.logoLeaf}
/>
{/* <span className={styles.logoText}>My Dosa Place</span> */}
</Link> </Link>
{/* Navigation Links */} {/* Navigation Links */}

View File

@ -30,7 +30,17 @@
} }
.logoLeaf { .logoLeaf {
font-size: 1.4rem; display: inline-flex;
width: 250px;
height: 45px;
line-height: 0;
}
.logoLeaf img {
display: block;
width: 100%;
height: 100%;
object-fit: contain;
} }
.logoText { .logoText {