import { Box, Container, HStack, Link, Stack, Text, VStack } from "@chakra-ui/react"; import { Mail, MapPin, Phone } from "lucide-react"; import { mailHref, telHref, whatsappHref, type Settings } from "../../data/content"; import { WhatsAppIcon } from "./icons"; export function Footer({ settings }: { settings: Settings }) { const name = settings.company_name || "盈豐太陽能工程有限公司"; const shortName = settings.company_short_name || settings.company_name || "盈豐太陽能"; const year = new Date().getFullYear(); return ( {shortName} 專營香港村屋太陽能系統,由評估、設計、申請到安裝驗收,一站式為你善用天台,賺取發電回報。 {settings.license_no} 快速連結 {[ { label: "服務範圍", href: "#services" }, { label: "完成案例", href: "#cases" }, { label: "服務流程", href: "#process" }, { label: "常見問題", href: "#faq" }, { label: "Blog", href: "/blog" }, ].map((l) => ( {l.label} ))} 聯絡我哋 {settings.phone} WhatsApp {settings.email} {settings.address} © {year} {name} All rights reserved. 管理後台 ); }