casualroom/apps/fenghuo/web/components/homepage/footer.tsx

55 lines
1.8 KiB
TypeScript
Raw Normal View History

2025-07-28 07:50:50 +08:00
'use client'
import usePublicImage from '@/hooks/use-public-image';
import React from 'react';
const HomepageFooter: React.FC = () => {
const { imageUrl } = usePublicImage('homepage/footer.png');
return (
<div
className="flex flex-col items-center mx-auto justify-center relative overflow-x-auto w-full max-w-[1920px] h-[758px] bg-cover bg-center"
style={{ backgroundImage: `url(${imageUrl})` }}
>
{/* 主标题 */}
<div className="mb-8 mt-15">
<p className=" tracking-widest text-[32px] text-white" >
OO情愉悦
</p>
</div>
{/* 版权声明 */}
<div className="mb-8 text-center space-y-2 ">
<p className="text-sm opacity-80 text-[#818da3]">
</p>
<p className="text-sm opacity-80 mt-5 text-[#818da3]">
Copyright©2016-2019 ibaotu.com
</p>
</div>
{/* 导航链接 */}
<div className="flex space-x-12 mt-5">
<a href="#" className="hover:text-blue-300 transition-colors text-[#818da3]">
</a>
<a href="#" className="hover:text-blue-300 transition-colors text-[#818da3]">
</a>
<a href="#" className="hover:text-blue-300 transition-colors text-[#818da3]">
</a>
<a href="#" className="hover:text-blue-300 transition-colors text-[#818da3]">
</a>
<a href="#" className="hover:text-blue-300 transition-colors text-[#818da3]">
</a>
<a href="#" className="hover:text-blue-300 transition-colors text-[#818da3]">
便
</a>
</div>
</div>
);
};
export default HomepageFooter;