diff --git a/index.html b/index.html index 1d5e6e2..bc0a0f4 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ - + BetterGov.ph | Republic of the Philippines | Community Powered Government diff --git a/public/CREDITS.md b/public/CREDITS.md new file mode 100644 index 0000000..79634b3 --- /dev/null +++ b/public/CREDITS.md @@ -0,0 +1,11 @@ +# Credits + +## Kidapawan City Seal + +`kidapawan-seal.png` is the official seal of the City of Kidapawan, +Cotabato, Philippines. + +- Source: City Government of Kidapawan, via [Wikimedia Commons](https://commons.wikimedia.org/wiki/File:Seal_of_Kidapawan_City.png) +- License: [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/) + +Redistributions of this image must retain this credit and the same license. diff --git a/public/kidapawan-seal.png b/public/kidapawan-seal.png new file mode 100644 index 0000000..173cd54 Binary files /dev/null and b/public/kidapawan-seal.png differ diff --git a/src/components/SEO.tsx b/src/components/SEO.tsx index 8ccda62..b11f477 100644 --- a/src/components/SEO.tsx +++ b/src/components/SEO.tsx @@ -74,24 +74,8 @@ export default function SEO({ <link rel="canonical" href={fullUrl} /> {/* Favicon */} - <link rel="icon" type="image/x-icon" href="/favicon.ico" /> - <link - rel="apple-touch-icon" - sizes="180x180" - href="/apple-touch-icon.png" - /> - <link - rel="icon" - type="image/png" - sizes="32x32" - href="/favicon-32x32.png" - /> - <link - rel="icon" - type="image/png" - sizes="16x16" - href="/favicon-16x16.png" - /> + <link rel="icon" type="image/png" href="/kidapawan-seal.png" /> + <link rel="apple-touch-icon" href="/kidapawan-seal.png" /> {/* Preconnect to external domains */} <link rel="preconnect" href="https://fonts.googleapis.com" /> diff --git a/src/components/layout/Footer.tsx b/src/components/layout/Footer.tsx index 42643e0..a486312 100644 --- a/src/components/layout/Footer.tsx +++ b/src/components/layout/Footer.tsx @@ -1,11 +1,5 @@ import React from 'react'; -import { - Facebook, - Twitter, - Instagram, - Youtube, - CheckCircle2, -} from 'lucide-react'; +import { Facebook } from 'lucide-react'; import { footerNavigation } from '../../data/navigation'; import { Link } from 'react-router-dom'; import { useTranslation } from 'react-i18next'; @@ -17,12 +11,6 @@ const Footer: React.FC = () => { switch (label) { case 'Facebook': return <Facebook className="h-5 w-5" />; - case 'Twitter': - return <Twitter className="h-5 w-5" />; - case 'Instagram': - return <Instagram className="h-5 w-5" />; - case 'YouTube': - return <Youtube className="h-5 w-5" />; default: return null; } @@ -34,12 +22,11 @@ const Footer: React.FC = () => { <div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8"> <div> <div className="flex items-center mb-4"> - <CheckCircle2 className="h-12 w-12 mr-3" /> - {/* <img - src="/ph-logo.webp" - alt="Philippines Coat of Arms" + <img + src="/kidapawan-seal.png" + alt="Official Seal of the City of Kidapawan" className="h-12 w-12 mr-3" - /> */} + /> <div> <div className="font-bold">{t('site_name')}</div> diff --git a/src/components/layout/Navbar.tsx b/src/components/layout/Navbar.tsx index ccccab2..6da32c4 100644 --- a/src/components/layout/Navbar.tsx +++ b/src/components/layout/Navbar.tsx @@ -1,12 +1,5 @@ import React, { useState } from 'react'; -import { - X, - Menu, - ChevronDown, - Globe, - Search, - CheckCircle2, -} from 'lucide-react'; +import { X, Menu, ChevronDown, Globe, Search } from 'lucide-react'; import { mainNavigation } from '../../data/navigation'; import type { LanguageType } from '../../types/index'; import { Link } from 'react-router-dom'; @@ -96,12 +89,11 @@ const Navbar: React.FC = () => { <div className="flex justify-between items-center py-4"> <div className="flex items-center"> <Link to="/" className="flex items-center"> - <CheckCircle2 className="h-12 w-12 mr-3" /> - {/* <img - src="/ph-logo.webp" - alt="Philippines Coat of Arms" + <img + src="/kidapawan-seal.png" + alt="Official Seal of the City of Kidapawan" className="h-12 w-12 mr-3" - /> */} + /> <div> <div className="text-black font-bold"> {import.meta.env.VITE_GOVERNMENT_NAME} diff --git a/src/data/navigation.ts b/src/data/navigation.ts index 5e67fd0..83360c0 100644 --- a/src/data/navigation.ts +++ b/src/data/navigation.ts @@ -71,9 +71,9 @@ export const footerNavigation = { }, ], socialLinks: [ - { label: 'Facebook', href: 'https://facebook.com/govph' }, - { label: 'Twitter', href: 'https://twitter.com/govph' }, - { label: 'Instagram', href: 'https://instagram.com/govph' }, - { label: 'YouTube', href: 'https://youtube.com/govph' }, + { + label: 'Facebook', + href: 'https://www.facebook.com/CityGovernmentofKidapawan', + }, ], };