eny.space Landingpage
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(hero-right): add pricing behind when prelaunch it is not prelaunch

+2 -2
+2 -2
app/components/hero/hero-right.tsx
··· 1 1 import Link from "next/link"; 2 2 import { ChevronDownIcon } from "lucide-react"; 3 + import { prelaunch } from "@/lib/prelaunch"; 3 4 4 5 const navItems = [ 5 6 { label: "Key features", href: "/#features" }, 7 + ...(!prelaunch ? [{ label: "Pricing", href: "/#pricing" }] : []), 6 8 { label: "FAQs", href: "/#faq" }, 7 - // { label: "Build with eny.space", href: "/#build" }, 8 - // { label: "Latest news", href: "/#news" }, 9 9 ]; 10 10 11 11 export function HeroRight() {