/** * Help Settings Custom Domains Page */ import React from 'react'; import { useNavigate, Link } from 'react-router-dom'; import { ArrowLeft, Globe, Shield, Link as LinkIcon, CheckCircle, ChevronRight, HelpCircle, Settings, AlertCircle, } from 'lucide-react'; const HelpSettingsDomains: React.FC = () => { const navigate = useNavigate(); return (

Custom Domains Guide

Use your own domain for booking

Overview

Custom Domains let you use your own domain name (like booking.yourcompany.com) instead of the default subdomain. This creates a more professional, branded experience for your customers.

Custom domains are available on Pro and Business plans.

Setup Process

  1. 1

    Add Domain

    Enter your custom domain in the settings

  2. 2

    Configure DNS

    Add CNAME record pointing to our servers

  3. 3

    Verify

    Click verify to confirm DNS is configured

  4. 4

    SSL Certificate

    We automatically provision an SSL certificate

DNS Configuration

Add this CNAME record to your DNS provider:

Type:
CNAME
Name:
booking
Value:
cname.smoothschedule.com

DNS changes can take up to 48 hours to propagate.

Benefits

  • Professional: Use your own branded domain
  • Trust: Customers see your domain, not ours
  • SEO: Build search rankings on your domain
  • SSL: Automatic HTTPS encryption included

Related Settings

General Settings Appearance Settings

Need More Help?

Our support team is ready to help with any questions.

); }; export default HelpSettingsDomains;