{ribbonTitle}
diff --git a/src/components/widgets/Steps2.astro b/src/components/widgets/Steps2.astro
index 8f7afb591c..b57bb39082 100644
--- a/src/components/widgets/Steps2.astro
+++ b/src/components/widgets/Steps2.astro
@@ -28,14 +28,14 @@ const {
subtitle={subtitle}
tagline={tagline}
classes={{
- container: 'text-center md:text-left rtl:md:text-right mb-4 md:mb-8',
+ container: 'text-center md:text-left md:rtl:text-right mb-4 md:mb-8',
title: 'mb-4 text-3xl lg:text-4xl font-bold font-heading',
subtitle: 'mb-8 text-xl text-muted dark:text-slate-400',
// ...((classes?.headline as {}) ?? {}),
}}
/>
-
+
{
typeof callToAction === 'string' ? (
@@ -53,7 +53,7 @@ const {
items && items.length
? items.map(({ title: title2, description, icon }, index) => (
-
+
{icon ? : index + 1}
diff --git a/src/navigation.ts b/src/navigation.ts
index d5cd65bc1e..2301ddff6a 100644
--- a/src/navigation.ts
+++ b/src/navigation.ts
@@ -177,7 +177,7 @@ export const footerData = {
{ ariaLabel: 'Github', icon: 'tabler:brand-github', href: 'https://github.com/onwidget/astrowind' },
],
footNote: `
-

+

Made by
onWidget ยท All rights reserved.
`,
};
diff --git a/src/pages/homes/saas.astro b/src/pages/homes/saas.astro
index 14ca2038f9..8291b461c6 100644
--- a/src/pages/homes/saas.astro
+++ b/src/pages/homes/saas.astro
@@ -51,9 +51,8 @@ const metadata = {
}}
>
- Simplify web design with Astrowind:
your ultimate SaaS companion
+ Simplify web design with Astrowind:
your ultimate SaaS companion
diff --git a/src/utils/images.ts b/src/utils/images.ts
index d6f14f0573..a33584e574 100644
--- a/src/utils/images.ts
+++ b/src/utils/images.ts
@@ -84,9 +84,7 @@ export const adaptOpenGraphImages = async (
typeof resolvedImage !== 'string' && resolvedImage?.width <= defaultWidth
? [resolvedImage?.width, resolvedImage?.height]
: [defaultWidth, defaultHeight];
- _image = (
- await astroAssetsOptimizer(resolvedImage, [dimensions[0]], dimensions[0], dimensions[1], 'jpg')
- )[0];
+ _image = (await astroAssetsOptimizer(resolvedImage, [dimensions[0]], dimensions[0], dimensions[1], 'jpg'))[0];
}
if (typeof _image === 'object') {
diff --git a/tsconfig.json b/tsconfig.json
index ec8fce08fb..2c6a69fdb7 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -6,7 +6,8 @@
"baseUrl": ".",
"paths": {
"~/*": ["src/*"]
- }
+ },
+ "types": ["eslint"]
},
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist/"]