From 63c973f1ca45c9530158e0b2b1aa897c9f55409b Mon Sep 17 00:00:00 2001 From: "Kar l5.G" Date: Wed, 26 Mar 2025 12:30:02 +0530 Subject: [PATCH] t --- src/components/DomainSetupForm.jsx | 3 ++- src/pages/get-started.astro | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/DomainSetupForm.jsx b/src/components/DomainSetupForm.jsx index f3a0b28..f5b78fd 100644 --- a/src/components/DomainSetupForm.jsx +++ b/src/components/DomainSetupForm.jsx @@ -192,6 +192,7 @@ export const DomainSetupForm = ({ defaultSubdomain }) => { // Simulate an API call to validate the domain setTimeout(() => { // Simulate a real domain check - in a real app this would be an API call + // call /host-api/v1/domains/validate/?domain=domain.com const checkResult = true; // Assume domain is valid for demo setIsValidating(false); @@ -205,7 +206,7 @@ export const DomainSetupForm = ({ defaultSubdomain }) => { } validateForm(); - }, 1500); + }, 500); }; // Check DNS configuration diff --git a/src/pages/get-started.astro b/src/pages/get-started.astro index c53d5cd..28c58b7 100644 --- a/src/pages/get-started.astro +++ b/src/pages/get-started.astro @@ -5,7 +5,7 @@ import { DomainSetupForm } from '../components/DomainSetupForm'; // Page-specific SEO metadata const pageTitle = "Get Started | SiliconPin"; const pageDescription = "Start your project with SiliconPin's hosting services. Deploy a web app, from source code, or upload a static site."; -const pageImage = "https://images.unsplash.com/photo-1551731409-43eb3e517a1a?q=80&w=2000&auto=format&fit=crop"; +const pageImage = "https://siliconpin.com/assets/images/get-started-og-image.png"; // Generate a random subdomain for server side rendering const randomString = () => {