diff --git a/prettier.config.js b/prettier.config.js
index d68bdf5..b945f52 100644
--- a/prettier.config.js
+++ b/prettier.config.js
@@ -7,7 +7,7 @@ export default {
tabWidth: 2,
useTabs: false,
semi: false,
- singleQuote: false,
+ singleQuote: true,
quoteProps: "as-needed",
trailingComma: "es5",
bracketSpacing: true,
diff --git a/src/animations.ts b/src/animations.ts
index 3b7e6e7..53b367d 100644
--- a/src/animations.ts
+++ b/src/animations.ts
@@ -1,10 +1,10 @@
export function getTitleAnimation(delay = 0, duration = 0.3, once = true) {
return {
- initial: { opacity: 0.001, translateY: 20, filter: "blur(4px)" },
+ initial: { opacity: 0.001, translateY: 20, filter: 'blur(4px)' },
whileInView: {
opacity: 1,
translateY: 0,
- filter: "blur(0px)",
+ filter: 'blur(0px)',
transition: { duration, delay },
},
viewport: { once },
diff --git a/src/components/BackButton.astro b/src/components/BackButton.astro
index 6cac771..f442462 100644
--- a/src/components/BackButton.astro
+++ b/src/components/BackButton.astro
@@ -1,6 +1,6 @@
---
-import ArrowLeftIcon from "~/icons/ArrowLeftIcon.astro"
-import { getLocale, getUI } from "~/utils/i18n"
+import ArrowLeftIcon from '~/icons/ArrowLeftIcon.astro'
+import { getLocale, getUI } from '~/utils/i18n'
const locale = getLocale(Astro)
diff --git a/src/components/Button.astro b/src/components/Button.astro
index 30fb9d8..e2266ed 100644
--- a/src/components/Button.astro
+++ b/src/components/Button.astro
@@ -1,5 +1,5 @@
---
-import { getLocale, getPath } from "~/utils/i18n"
+import { getLocale, getPath } from '~/utils/i18n'
const locale = getLocale(Astro)
const getLocalePath = getPath(locale)
@@ -13,15 +13,15 @@ const { class: className, isPrimary, isAlert, isBordered, href, id, extra } = As
{...extra}
href={getLocalePath(href)}
class:list={[
- "transition-bg flex items-center justify-center gap-2 rounded-xl px-6 py-4 transition-transform duration-150 hover:scale-[1.02] active:scale-[0.98]",
+ 'transition-bg flex items-center justify-center gap-2 rounded-xl px-6 py-4 transition-transform duration-150 hover:scale-[1.02] active:scale-[0.98]',
className,
isPrimary
- ? "border-dark bg-dark text-paper shadow-lg"
+ ? 'border-dark bg-dark text-paper shadow-lg'
: isAlert
- ? "bg-red-300 text-dark"
+ ? 'bg-red-300 text-dark'
: !isBordered
- ? "bg-subtle"
- : "!transition-bg border-2 border-dark hover:bg-dark hover:text-paper hover:shadow-sm",
+ ? 'bg-subtle'
+ : '!transition-bg border-2 border-dark hover:bg-dark hover:text-paper hover:shadow-sm',
]}
>