diff --git a/package-lock.json b/package-lock.json index 8d5449e..738a0ac 100644 --- a/package-lock.json +++ b/package-lock.json @@ -17,6 +17,7 @@ "typescript": "^5.3.3" }, "devDependencies": { + "@tailwindcss/forms": "^0.5.7", "prettier": "^3.2.5", "prettier-plugin-astro": "^0.13.0", "prettier-plugin-tailwindcss": "^0.5.11" @@ -1236,6 +1237,18 @@ "win32" ] }, + "node_modules/@tailwindcss/forms": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.5.7.tgz", + "integrity": "sha512-QE7X69iQI+ZXwldE+rzasvbJiyV/ju1FGHH0Qn2W3FKbuYtqp8LKcy6iSw79fVUT5/Vvf+0XgLCeYVG+UV6hOw==", + "dev": true, + "dependencies": { + "mini-svg-data-uri": "^1.2.3" + }, + "peerDependencies": { + "tailwindcss": ">=3.0.0 || >= 3.0.0-alpha.1" + } + }, "node_modules/@types/babel__core": { "version": "7.20.5", "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", @@ -4591,6 +4604,15 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/mini-svg-data-uri": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz", + "integrity": "sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==", + "dev": true, + "bin": { + "mini-svg-data-uri": "cli.js" + } + }, "node_modules/minimatch": { "version": "9.0.3", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", diff --git a/package.json b/package.json index 3395f29..013ddba 100644 --- a/package.json +++ b/package.json @@ -20,6 +20,7 @@ "typescript": "^5.3.3" }, "devDependencies": { + "@tailwindcss/forms": "^0.5.7", "prettier": "^3.2.5", "prettier-plugin-astro": "^0.13.0", "prettier-plugin-tailwindcss": "^0.5.11" diff --git a/src/components/ClientsSection.astro b/src/components/ClientsSection.astro index 68dc1c1..3822cfb 100644 --- a/src/components/ClientsSection.astro +++ b/src/components/ClientsSection.astro @@ -1,14 +1,11 @@ --- -/* `title` variable used to customise the heading. */ +// Variables for customization of the LoginModal Component +// Main heading const title: string = "Trusted by Industry Leaders"; -/* `subTitle` variable used to customise the sub-heading text. */ +// Sub-heading text const subTitle: string = "Experience the reliability chosen by industry giants."; - -/* - In the above, the title and subTitle attributes are variables part of the ClientsSection component. -*/ ---
+
{content}