"use client";
import { cn } from "@app/lib/cn";
import { Search } from "lucide-react";
import { useTranslations } from "next-intl";
type LauncherSearchFirstGateProps = {
layout: "grid" | "list";
};
function GhostResourceGrid() {
return (
{Array.from({ length: 4 }).map((_, index) => (
))}
);
}
function GhostResourceList() {
return (
{Array.from({ length: 3 }).map((_, index) => (
))}
);
}
export function LauncherSearchFirstGate({
layout
}: LauncherSearchFirstGateProps) {
const t = useTranslations();
return (
{layout === "grid" ? (
) : (
)}
{t("resourceLauncherSearchFirstTitle")}
{t("resourceLauncherSearchFirstDescription")}
);
}