import * as React from 'react'; interface LinksDomainsProps { slug: string; onUpdateSlug: (newSlug: string) => void; } const LinksDomains: React.FC = ({ slug, onUpdateSlug }) => { const [customDomain, setCustomDomain] = React.useState(''); return (

Links & Custom Domains

Your GreenPage URL

This is your main link that you can share anywhere.

greenpage.ai/ onUpdateSlug(e.target.value)} className="flex-1 bg-transparent p-3 text-gray-900 dark:text-white focus:outline-none" />

Connect a Custom Domain

Use your own domain for a more professional look (e.g., links.yourcompany.com).

setCustomDomain(e.target.value)} placeholder="your-domain.com" className="w-full bg-transparent p-3 text-gray-900 dark:text-white focus:outline-none rounded-md" />

You'll need to update your DNS records after connecting. We'll provide the instructions.

); }; export default LinksDomains;