diff --git a/src/assets/onboarding/sunset2.webp b/src/assets/onboarding/sunset2.webp deleted file mode 100644 index 927828c..0000000 Binary files a/src/assets/onboarding/sunset2.webp and /dev/null differ diff --git a/src/assets/onboarding/sunsetcoast.webp b/src/assets/onboarding/sunsetcoast.webp new file mode 100644 index 0000000..5e56a8c Binary files /dev/null and b/src/assets/onboarding/sunsetcoast.webp differ diff --git a/src/assets/onboarding/sunsetlake.webp b/src/assets/onboarding/sunsetlake.webp new file mode 100644 index 0000000..0d86e85 Binary files /dev/null and b/src/assets/onboarding/sunsetlake.webp differ diff --git a/src/components/onboarding/fakes.tsx b/src/components/onboarding/fakes.tsx index ad43dba..873ed62 100644 --- a/src/components/onboarding/fakes.tsx +++ b/src/components/onboarding/fakes.tsx @@ -3,7 +3,8 @@ // demo progress — so new users see the real UI's shapes before their own // library exists. import sunset from "../../assets/onboarding/sunset.webp"; -import sunset2 from "../../assets/onboarding/sunset2.webp"; +import sunsetcoast from "../../assets/onboarding/sunsetcoast.webp"; +import sunsetlake from "../../assets/onboarding/sunsetlake.webp"; import beach from "../../assets/onboarding/beach.webp"; import landscape1 from "../../assets/onboarding/landscape1.webp"; import landscape2 from "../../assets/onboarding/landscape2.webp"; @@ -44,7 +45,7 @@ export function fakeImage(index: number): string { // - tags "landscape": mountain valleys + the alpine lake (all landscapes) export const SEARCH_RESULTS = { filename: [beach], - semantic: [sunset, sunset2], + semantic: [sunsetcoast, sunset, sunsetlake], tags: [landscape1, landscape2, alpinelake], } as const;