Skip to content

Commit

Permalink
chore: add contact information
Browse files Browse the repository at this point in the history
  • Loading branch information
huanghanzhilian committed Jan 19, 2024
1 parent fd87ad2 commit a20f450
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions components/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import Image from 'next/image'

import { Icons, Services, LogoChina, ResponsiveImage } from 'components'
import { siteTitle } from '@/utils'
import Link from 'next/link'

export default function Footer() {
return (
Expand All @@ -14,7 +15,7 @@ export default function Footer() {
<div className="flex flex-col gap-y-2 lg:flex-row lg:space-x-5">
<span>我们每周 7 天、每天 24 小时为您解答</span>
<span className="hidden lg:block bg-gray-300 w-[2px]" />
<span>支持电话86-1899909999</span>
<span>我的微信:huanghanzhilian</span>
</div>
</div>
<div className="min-w-max">
Expand All @@ -38,10 +39,21 @@ export default function Footer() {
<div className="flex items-center justify-between">
<p className="lg:mr-20">更多联系方式!</p>
<div className="flex space-x-5">
<Icons.Twitter className="w-8 h-8 text-gray-400" />
<Icons.Linkedin className="w-8 h-8 text-gray-400" />
<Icons.Instagram className="w-8 h-8 text-gray-400" />
<Icons.Youtube className="w-8 h-8 text-gray-400" />
<Link target="_blank" href="https://twitter.com/Huanghanzhilian">
<Icons.Twitter className="w-8 h-8 text-gray-400" />
</Link>
<Link
target="_blank"
href="https://www.linkedin.com/in/%E7%BB%A7%E9%B9%8F-%E9%BB%84-65217a265/"
>
<Icons.Linkedin className="w-8 h-8 text-gray-400" />
</Link>
<Link target="_blank" href="https://www.instagram.com/jipenghuang/">
<Icons.Instagram className="w-8 h-8 text-gray-400" />
</Link>
<Link target="_blank" href="https://www.youtube.com/channel/UCPJUB4zMmknuFw7pWUSWgIw">
<Icons.Youtube className="w-8 h-8 text-gray-400" />
</Link>
</div>
</div>

Expand Down

0 comments on commit a20f450

Please sign in to comment.