Updated UI and fixed bugs
BIN
public/favicon.ico
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
public/favicon.jpeg
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
public/icon.jpeg
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 4.2 KiB |
@ -20,6 +20,11 @@ const geistMono = Geist_Mono({
|
||||
export const metadata: Metadata = {
|
||||
title: "dine360 - Complete Restaurant Management System",
|
||||
description: "Built for Growth - The Complete Restaurant Management System with 24/7 Expert Support",
|
||||
icons: {
|
||||
icon: "/favicon.ico",
|
||||
shortcut: "/favicon.ico",
|
||||
apple: "/favicon.ico",
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
|
||||
BIN
src/assets/favicon/favicon.ico
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
src/assets/footer/logo-1.png
Normal file
|
After Width: | Height: | Size: 4.3 KiB |
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 17 KiB |
@ -7,6 +7,7 @@ import {
|
||||
ChevronsRight, ArrowRight, ArrowUp
|
||||
} from 'lucide-react';
|
||||
import Image from 'next/image';
|
||||
import Logo from '@/assets/footer/logo-1.png';
|
||||
|
||||
const Footer = () => {
|
||||
|
||||
@ -131,10 +132,16 @@ const Footer = () => {
|
||||
{/* Column 1: Brand */}
|
||||
<motion.div variants={itemVariants} className="space-y-6">
|
||||
<div className="flex flex-col gap-2">
|
||||
<h2 className="text-4xl font-bold tracking-tighter uppercase relative inline-block">
|
||||
Dine <span className="text-brand-red">360</span>
|
||||
<div className="h-1.5 w-20 bg-brand-red mt-2"></div>
|
||||
</h2>
|
||||
<Link href="/" className="inline-block">
|
||||
<Image
|
||||
src={Logo}
|
||||
alt="Dine360 Logo"
|
||||
width={200}
|
||||
height={80}
|
||||
className="h-auto w-auto"
|
||||
priority
|
||||
/>
|
||||
</Link>
|
||||
</div>
|
||||
<p className="text-gray-400 text-base leading-relaxed max-w-sm">
|
||||
Proudly serving independent restaurants in Toronto (GTA), Hamilton, and Kitchener-Waterloo. Providing comprehensive solutions for the modern restaurant industry.
|
||||
|
||||