| 10 | import { CtaButton } from '@/components/shared/ui/cta-button'; |
| 11 | |
| 12 | const Header = ({ className }: { className?: string }) => { |
| 13 | return ( |
| 14 | <> |
| 15 | {/* <div className="w-full flex gap-4 items-center justify-center p-4 bg-purple-950"> |
| 16 | <section |
| 17 | className={cn( |
| 18 | 'wide-container !py-0 flex justify-between items-center' |
| 19 | )} |
| 20 | > |
| 21 | <p className="text-white text-sm"> |
| 22 | <span className="font-bold"> |
| 23 | Today is PageAI launch day!{' '} |
| 24 | <span className="text-primary-400">🚀</span> |
| 25 | </span> |
| 26 | <span className="hidden lg:flex"> |
| 27 | The best AI landing page builder is launching on Product Hunt. Any |
| 28 | support would be greatly appreciated! |
| 29 | </span> |
| 30 | </p> |
| 31 | <a |
| 32 | href="https://www.producthunt.com/products/page-ai-websites-a-human-would-build?embed=true&utm_source=badge-featured&utm_medium=badge&utm_source=badge-page-ai-websites-a-human-would-build" |
| 33 | target="_blank" |
| 34 | className="shrink-0" |
| 35 | > |
| 36 | <img |
| 37 | src="https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=962284&theme=light&t=1749673353125" |
| 38 | alt="Page AI ⋅ Websites a human would build - Prompt to design & clean code in 5 min ⋅ Deploy with 1 click | Product Hunt" |
| 39 | width={250} |
| 40 | height={54} |
| 41 | className="w-40 lg:w-52 h-auto" |
| 42 | /> |
| 43 | </a> |
| 44 | </section> |
| 45 | </div> */} |
| 46 | |
| 47 | <div className="w-full flex gap-4 items-center justify-center px-1 py-4 md:p-4 bg-purple-800 shadow-[0_0_10px_rgba(0,0,0,0.1)]"> |
| 48 | <section |
| 49 | className={cn( |
| 50 | 'wide-container !py-0 flex justify-between items-center gap-4' |
| 51 | )} |
| 52 | > |
| 53 | <p className="text-white text-xs md:text-base"> |
| 54 | <span className="font-semibold">New!</span> An AI that builds |
| 55 | production-ready websites using Page UI. |
| 56 | </p> |
| 57 | |
| 58 | <CtaButton asChild className="shrink-0"> |
| 59 | <a |
| 60 | href="https://pageai.pro" |
| 61 | target="_blank" |
| 62 | rel="noopener noreferrer" |
| 63 | className="shrink-0 inline-flex items-center h-10 text-xs md:text-base" |
| 64 | > |
| 65 | Try Page AI → |
| 66 | </a> |
| 67 | </CtaButton> |
| 68 | </section> |
| 69 | </div> |