chore: linting

This commit is contained in:
DESKTOP-RTLN3BA\$punk 2026-01-28 22:15:43 -08:00
parent 16b839138d
commit 70fcb2d055
10 changed files with 41 additions and 38 deletions

View file

@ -109,10 +109,10 @@ export function HeroSection() {
Connect any LLM to your internal knowledge sources and chat with it in real time alongside
your team.
</p>
<div className="mb-10 mt-8 flex w-full flex-col items-center justify-center gap-4 px-8 sm:flex-row md:mb-20">
<GetStartedButton />
<ContactSalesButton />
</div>
<div className="mb-10 mt-8 flex w-full flex-col items-center justify-center gap-4 px-8 sm:flex-row md:mb-20">
<GetStartedButton />
<ContactSalesButton />
</div>
<div
ref={containerRef}
className="relative mx-auto max-w-7xl rounded-[32px] border border-neutral-200/50 bg-neutral-100 p-2 backdrop-blur-lg md:p-4 dark:border-neutral-700 dark:bg-neutral-800/50"

View file

@ -1,6 +1,6 @@
"use client";
import { createContext, useContext, type ReactNode } from "react";
import { createContext, type ReactNode, useContext } from "react";
interface SidebarContextValue {
isCollapsed: boolean;

View file

@ -1,2 +1,2 @@
export { useSidebarState } from "./useSidebarState";
export { SidebarProvider, useSidebarContext, useSidebarContextSafe } from "./SidebarContext";
export { useSidebarState } from "./useSidebarState";

View file

@ -1,5 +1,6 @@
"use client";
import { useAtom } from "jotai";
import {
AlertCircle,
AtSign,
@ -16,7 +17,6 @@ import {
Search,
X,
} from "lucide-react";
import { useAtom } from "jotai";
import { AnimatePresence, motion } from "motion/react";
import { useRouter } from "next/navigation";
import { useTranslations } from "next-intl";