"use client" import { Icons } from "../icons" import { PageHeader } from "../page-header" import { Button } from "../ui/button" import { Label } from "../ui/label" import { LABELS } from "@/app/labels" import PSELogo from "@/public/icons/archstar.webp" import dynamic from "next/dynamic" import Image from "next/image" import Link from "next/link" const MotionH1 = dynamic( () => import("framer-motion").then((mod) => mod.motion.h1), { ssr: false, loading: () =>

} ) export const HomepageHeader = () => { return ( } subtitle={LABELS.HOMEPAGE.HEADER_SUBTITLE} image={
Privacy & Scaling Explorations
} actions={
} /> ) }