diff --git a/assets/favicon.png b/assets/favicon.png index e75f697..b9f38e8 100644 Binary files a/assets/favicon.png and b/assets/favicon.png differ diff --git a/assets/icon.png b/assets/icon.png index a0b1526..b9f38e8 100644 Binary files a/assets/icon.png and b/assets/icon.png differ diff --git a/assets/images/app_logo.png b/assets/images/app_logo.png new file mode 100644 index 0000000..b9f38e8 Binary files /dev/null and b/assets/images/app_logo.png differ diff --git a/assets/images/hero_pottery.jpg b/assets/images/hero_pottery.jpg new file mode 100644 index 0000000..b2c7729 Binary files /dev/null and b/assets/images/hero_pottery.jpg differ diff --git a/assets/images/pottery_bg_1.png b/assets/images/pottery_bg_1.png new file mode 100644 index 0000000..6bfecb2 Binary files /dev/null and b/assets/images/pottery_bg_1.png differ diff --git a/assets/images/pottery_bg_2.png b/assets/images/pottery_bg_2.png new file mode 100644 index 0000000..b20caee Binary files /dev/null and b/assets/images/pottery_bg_2.png differ diff --git a/assets/images/pottery_bg_3.png b/assets/images/pottery_bg_3.png new file mode 100644 index 0000000..2a27c1c Binary files /dev/null and b/assets/images/pottery_bg_3.png differ diff --git a/assets/images/pottery_bg_4.png b/assets/images/pottery_bg_4.png new file mode 100644 index 0000000..fd8b8c7 Binary files /dev/null and b/assets/images/pottery_bg_4.png differ diff --git a/assets/images/pottery_bg_5.png b/assets/images/pottery_bg_5.png new file mode 100644 index 0000000..818ac0f Binary files /dev/null and b/assets/images/pottery_bg_5.png differ diff --git a/assets/images/pottery_bg_6.png b/assets/images/pottery_bg_6.png new file mode 100644 index 0000000..60e37e1 Binary files /dev/null and b/assets/images/pottery_bg_6.png differ diff --git a/assets/images/pottery_bg_7.png b/assets/images/pottery_bg_7.png new file mode 100644 index 0000000..b0d4a45 Binary files /dev/null and b/assets/images/pottery_bg_7.png differ diff --git a/fehl.md b/fehl.md index 68c6518..e6984a9 100644 --- a/fehl.md +++ b/fehl.md @@ -1,6 +1,6 @@ -Im step notes feld doppelt so groß -farbpalette -fotos? -unter kategorie bei Forming/drying - -glazing application methode nach oben, dann number of coats, glaze +Im step notes feld doppelt so groß +farbpalette +fotos? +unter kategorie bei Forming/drying + +glazing application methode nach oben, dann number of coats, glaze diff --git a/nul b/nul new file mode 100644 index 0000000..e69de29 diff --git a/src/components/Button.tsx b/src/components/Button.tsx index ee62893..adb94b3 100644 --- a/src/components/Button.tsx +++ b/src/components/Button.tsx @@ -21,6 +21,7 @@ interface ButtonProps { textStyle?: TextStyle; accessibilityLabel?: string; accessibilityHint?: string; + icon?: React.ReactNode; // NEW } export const Button: React.FC = ({ @@ -34,6 +35,7 @@ export const Button: React.FC = ({ textStyle, accessibilityLabel, accessibilityHint, + icon, }) => { const isDisabled = disabled || loading; @@ -70,7 +72,10 @@ export const Button: React.FC = ({ size="small" /> ) : ( - {title} + <> + {icon && icon} + {title} + )} ); diff --git a/src/components/ButtonGrid.tsx b/src/components/ButtonGrid.tsx index b5ed4fc..0052185 100644 --- a/src/components/ButtonGrid.tsx +++ b/src/components/ButtonGrid.tsx @@ -4,7 +4,7 @@ import { Button } from './Button'; import { spacing } from '../lib/theme'; interface ButtonGridProps { - options: { value: string; label: string }[]; + options: { value: string; label: string; icon?: React.ReactNode }[]; selectedValue: string; onSelect: (value: string) => void; columns?: number; @@ -22,6 +22,7 @@ export const ButtonGrid: React.FC = ({