"use client"; import Link from "next/link"; import { UnkeyFooterLogo, UnkeyFooterLogoMobile, UnkeyLogoSmall, UnkeyLogoSmallMobile, } from "./footer-svgs"; import { socialMediaProfiles } from "./social-media"; import { useSelectedLayoutSegment } from "next/navigation"; const navigation = [ // { // title: "Company", // links: [ // { title: "About", href: "/about" }, // { title: "Blog", href: "/blog" }, // { title: "Changelog", href: "/changelog" }, // { title: "Templates", href: "/templates" }, // { // title: "Analytics", // href: "https://us.posthog.com/shared/HwZNjaKOLtgtpj6djuSo3fgOqrQm0Q?whitelabel", // }, // { // title: "Source Code", // href: "https://github.com/unkeyed/unkey", // }, // { // title: "Docs", // href: "https://unkey.dev/docs", // }, // ], // }, // { // title: "Connect", // links: socialMediaProfiles, // }, { title: "", links: [ { title: "Twitter", href: "https://twitter.com/JellyDropsLLC" }, // { title: "iSDK Twitter", href: "https://twitter.com/JellyDropsLLC" }, { title: "GitHub", href: "https://github.com/JellyDropsLLC" }, ], }, ]; function CompanyInfo() { return (
{/* */}
深圳果冻移民咨询
更多解释权归果冻移民所有
); } function CompanyInfoMobile() { return (
{/* */}
深圳果冻移民咨询
更多解释权归果冻移民所有
{/* {navigation.map((section, index) => (

{section.title}

    {section.links.map((link) => (
  • {link.href.startsWith("https://") ? ( {link.title} ) : ( {link.title} )}
  • ))}
))} */}
{/*
*/}
); } function Navigation() { return ( ); } function MobileNavigation() { return ( ); } export function Footer() { const segment = useSelectedLayoutSegment(); let isOK = true if (segment && ["auth", "/auth/login/", "/auth/signup/", "new", "manage"].includes(segment)) { isOK = false } if (!isOK) { return (<>) } return ( <> ); }