style: auto-format codebase with Prettier

Applied formatting to 1487+ files using pnpm format:write
  - TypeScript/JavaScript files
  - Svelte components
  - Astro pages
  - JSON configs
  - Markdown docs

  13 files still need manual review (Astro JSX comments)
This commit is contained in:
Wuesteon 2025-11-27 18:33:16 +01:00
parent 0241f5554c
commit d36b321d9d
3952 changed files with 661498 additions and 739751 deletions

View file

@ -7,17 +7,17 @@
* for the shared components to work correctly.
*/
export const requiredCssVariables = [
'--color-primary',
'--color-primary-hover',
'--color-primary-glow',
'--color-text-primary',
'--color-text-secondary',
'--color-text-muted',
'--color-background-page',
'--color-background-card',
'--color-background-card-hover',
'--color-border',
'--color-border-hover',
'--color-primary',
'--color-primary-hover',
'--color-primary-glow',
'--color-text-primary',
'--color-text-secondary',
'--color-text-muted',
'--color-background-page',
'--color-background-card',
'--color-background-card-hover',
'--color-border',
'--color-border-hover',
] as const;
/**
@ -62,45 +62,45 @@ export const exampleDarkTheme = `
* Type definitions for component props (for TypeScript users)
*/
export interface ButtonProps {
href?: string;
variant?: 'primary' | 'secondary' | 'outline' | 'ghost';
size?: 'sm' | 'md' | 'lg';
fullWidth?: boolean;
href?: string;
variant?: 'primary' | 'secondary' | 'outline' | 'ghost';
size?: 'sm' | 'md' | 'lg';
fullWidth?: boolean;
}
export interface CardProps {
variant?: 'default' | 'hover' | 'glow' | 'bordered';
padding?: 'none' | 'sm' | 'md' | 'lg' | 'xl';
variant?: 'default' | 'hover' | 'glow' | 'bordered';
padding?: 'none' | 'sm' | 'md' | 'lg' | 'xl';
}
export interface Feature {
icon: string;
title: string;
description: string;
href?: string;
icon: string;
title: string;
description: string;
href?: string;
}
export interface Testimonial {
name: string;
role?: string;
company?: string;
text: string;
image?: string;
rating?: number;
name: string;
role?: string;
company?: string;
text: string;
image?: string;
rating?: number;
}
export interface FAQItem {
question: string;
answer: string;
question: string;
answer: string;
}
export interface PricingPlan {
name: string;
description?: string;
price: string;
period?: string;
features: Array<{ text: string; included: boolean } | string>;
cta: { text: string; href: string };
highlighted?: boolean;
badge?: string;
name: string;
description?: string;
price: string;
period?: string;
features: Array<{ text: string; included: boolean } | string>;
cta: { text: string; href: string };
highlighted?: boolean;
badge?: string;
}