|
|
|
@ -3,18 +3,18 @@ import Link from "next/link";
|
|
|
|
|
|
|
|
|
|
const navigation = {
|
|
|
|
|
product: [
|
|
|
|
|
{name: 'SoraWebui', href: 'https://sorawebui.com'}
|
|
|
|
|
{ name: 'SoraWebui', href: 'https://sorawebui.com' }
|
|
|
|
|
],
|
|
|
|
|
legal: [
|
|
|
|
|
{name: 'Privacy Policy', href: '/privacy-policy'},
|
|
|
|
|
{name: 'Terms & Conditions', href: '/terms-of-service'},
|
|
|
|
|
{ name: 'Privacy Policy', href: '/privacy-policy' },
|
|
|
|
|
{ name: 'Terms & Conditions', href: '/terms-of-service' },
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default function Footer({
|
|
|
|
|
locale = '',
|
|
|
|
|
description = ''
|
|
|
|
|
}) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<footer className="bg-[#020d24]" aria-labelledby="footer-heading">
|
|
|
|
|
<div id="footer-heading" className="sr-only">
|
|
|
|
@ -36,12 +36,13 @@ export default function Footer({
|
|
|
|
|
{description}
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div className="mt-2 grid grid-cols-2 gap-8 xl:col-span-2 xl:mt-0">
|
|
|
|
|
<div className="md:grid md:grid-cols-2 md:gap-8">
|
|
|
|
|
<div>
|
|
|
|
|
<div className="text-sm font-semibold leading-6 text-white"></div>
|
|
|
|
|
<ul role="list" className="mt-6 space-y-4">
|
|
|
|
|
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="mt-10 md:mt-0">
|
|
|
|
@ -51,6 +52,7 @@ export default function Footer({
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className="md:grid md:grid-cols-2 md:gap-8">
|
|
|
|
|
<div>
|
|
|
|
|
<div className="text-sm font-semibold leading-6 text-white">Product</div>
|
|
|
|
@ -69,6 +71,7 @@ export default function Footer({
|
|
|
|
|
)}
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className="mt-10 md:mt-0">
|
|
|
|
|
<div className="text-sm font-semibold leading-6 text-white">Legal</div>
|
|
|
|
|
<ul role="list" className="mt-6 space-y-4">
|
|
|
|
@ -93,6 +96,21 @@ export default function Footer({
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className="mx-auto max-w-7xl px-6 py-4">
|
|
|
|
|
<div className="mt-2 grid grid-cols-2 gap-8 xl:col-span-2 xl:mt-0">
|
|
|
|
|
</div>
|
|
|
|
|
<div className="mt-10 md:mt-0">
|
|
|
|
|
<div>
|
|
|
|
|
{/* align="center" */}
|
|
|
|
|
<div className="text-sm font-semibold leading-6 text-white " style={{
|
|
|
|
|
display: 'flex',
|
|
|
|
|
justifyContent: 'center',
|
|
|
|
|
alignItems: 'center'
|
|
|
|
|
}} >蜀ICP备2024057100号</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</footer>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|