diff --git a/apps/blogai/components/footer.tsx b/apps/blogai/components/footer.tsx index 9606ab7..30d4e0e 100644 --- a/apps/blogai/components/footer.tsx +++ b/apps/blogai/components/footer.tsx @@ -291,179 +291,179 @@ export function Footer({ className, ...props }: React.ComponentProps<'p'>) { } -const navigation = [ - { - title: "Company", - links: [ - { title: "About", href: "/about" }, - { title: "Blog", href: "/blog" }, - { title: "Careers", href: "/careers" }, - { title: "Changelog", href: "/changelog" }, - { - title: "Analytics", - href: "https://us.posthog.com/shared/HwZNjaKOLtgtpj6djuSo3fgOqrQm0Q?whitelabel", - }, - { - title: "Source Code", - href: "https://github.com/unkeyed/unkey", - }, - { - title: "Documentation", - href: "https://unkey.dev/docs", - }, - ], - }, - { - title: "Legal", - links: [ - { title: "Privacy Policy", href: "/policies/privacy" }, - { title: "Terms", href: "/policies/terms" }, - ], - }, - { - title: "Connect", - links: [ - // ...socialMediaProfiles, - { - title: Book us with Cal.com, - href: "https://cal.com/team/unkey/unkey-chat??utm_source=banner&utm_campaign=oss", - }, - ], - }, -]; +// const navigation = [ +// { +// title: "Company", +// links: [ +// { title: "About", href: "/about" }, +// { title: "Blog", href: "/blog" }, +// { title: "Careers", href: "/careers" }, +// { title: "Changelog", href: "/changelog" }, +// { +// title: "Analytics", +// href: "https://us.posthog.com/shared/HwZNjaKOLtgtpj6djuSo3fgOqrQm0Q?whitelabel", +// }, +// { +// title: "Source Code", +// href: "https://github.com/unkeyed/unkey", +// }, +// { +// title: "Documentation", +// href: "https://unkey.dev/docs", +// }, +// ], +// }, +// { +// title: "Legal", +// links: [ +// { title: "Privacy Policy", href: "/policies/privacy" }, +// { title: "Terms", href: "/policies/terms" }, +// ], +// }, +// { +// title: "Connect", +// links: [ +// // ...socialMediaProfiles, +// { +// title: Book us with Cal.com, +// href: "https://cal.com/team/unkey/unkey-chat??utm_source=banner&utm_campaign=oss", +// }, +// ], +// }, +// ]; -function Navigation() { - return ( - - ); -} +// function Navigation() { +// return ( +// +// ); +// } -export function Footer_bak() { - return ( - - -
-
- {/* */} -
- -
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - {/*

© Unkeyed, Inc. {new Date().getFullYear()}

*/} -
-
-
- ); -} \ No newline at end of file +// export function Footer_bak() { +// return ( +// +// +//
+//
+// {/* */} +//
+// +//
+//
+//
+// +// +// +// +// +// +// +// +// +// +// +// +// +// +// +// +// +// +// +// +// +// +// +// +// +// +// +// +// {/*

© Unkeyed, Inc. {new Date().getFullYear()}

*/} +//
+//
+//
+// ); +// } \ No newline at end of file diff --git a/apps/blogai/lib/hooks/use-local-storage.ts b/apps/blogai/lib/hooks/use-local-storage.ts index 069af0e..3b9bfda 100644 --- a/apps/blogai/lib/hooks/use-local-storage.ts +++ b/apps/blogai/lib/hooks/use-local-storage.ts @@ -1,5 +1,3 @@ -"use client" - import { useEffect, useState } from "react"; export const useLocalStorage = (key: string, initialValue: T): [T, (value: T) => void] => {