diff --git a/astro.config.mjs b/astro.config.mjs index 0b1bf70..f7290e3 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -7,7 +7,7 @@ import compressor from "astro-compressor"; // https://astro.build/config export default defineConfig({ - site: 'https://screw-fast.vercel.app', + site: 'https://screwfast.uk', integrations: [tailwind(), sitemap(), compressor({ gzip: false, brotli: true })], output: 'static', adapter: vercelStatic() diff --git a/src/components/Meta.astro b/src/components/Meta.astro index ed05880..8a0b35d 100644 --- a/src/components/Meta.astro +++ b/src/components/Meta.astro @@ -14,8 +14,8 @@ const ogTitle: string = "ScrewFast: Hardware Tools & Construction Services"; // const author: string = "Emil Gulamov"; // Set the author's name const ogDescription: string = "Equip your projects with ScrewFast's top-quality hardware tools and expert construction services. Trusted by industry leaders, ScrewFast offers simplicity, affordability, and reliability. Experience the difference with user-centric design and cutting-edge tools. Start exploring now!"; // Set the Open Graph description -const URL: string = "https://screw-fast.vercel.app"; // Set the website URL -const socialImage: string = "https://screw-fast.vercel.app/social.png"; // Set the URL for the social media image +const URL: string = "https://screwfast.uk"; // Set the website URL +const socialImage: string = "https://screwfast.uk/social.png"; // Set the URL for the social media image --- @@ -24,7 +24,7 @@ const socialImage: string = "https://screw-fast.vercel.app/social.png"; // Set t "@context": "https://schema.org", "@type": "WebSite", "name": "ScrewFast", - "url": "https://screw-fast.vercel.app", + "url": "https://screwfast.uk", "description": "ScrewFast offers top-tier hardware tools and expert construction services to meet all your project needs. Start exploring and contact our sales team for superior quality and reliability." } diff --git a/src/components/ui/forms/input/PasswordInput.astro b/src/components/ui/forms/input/PasswordInput.astro index 4572058..529d480 100644 --- a/src/components/ui/forms/input/PasswordInput.astro +++ b/src/components/ui/forms/input/PasswordInput.astro @@ -4,8 +4,7 @@ const { forgot, id, errorId, - content, - aria = "password-error", + content } = Astro.props; interface Props { @@ -14,7 +13,6 @@ interface Props { id?: string; errorId?: string; content?: string; - aria?: string; } --- @@ -45,7 +43,7 @@ interface Props { name="password" class="block w-full rounded-lg border border-neutral-200 bg-neutral-50 px-4 py-3 text-sm text-neutral-700 focus:border-neutral-200 focus:outline-none focus:ring focus:ring-neutral-400 disabled:pointer-events-none disabled:opacity-50 dark:border-neutral-600 dark:bg-neutral-700/30 dark:text-neutral-300 dark:focus:ring-1" required - aria-describedby={aria} + aria-describedby={errorId} />