Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-04-23 00:42:14 +00:00

View File

@@ -13,9 +13,9 @@ export default function AnimeCatalogPage() {
{ id: "1", name: "Cyber Samurai", price: "Action", variant: "2024", imageSrc: "http://img.b2bpic.net/free-photo/concept-halloween-celebration-covid-19-pandemic_1258-18691.jpg" },
{ id: "2", name: "Neon Maiden", price: "Sci-Fi", variant: "2023", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-standing-universe-texture-projection_23-2149512126.jpg" },
{ id: "3", name: "Shadow Knight", price: "Fantasy", variant: "2024", imageSrc: "http://img.b2bpic.net/free-photo/ramadan-boxes-with-lantern-perspective-side_187299-38087.jpg" },
{ id: "4", name: "Cloud Princess", price: "Adventure", variant: "2022", imageSrc: "http://img.b2bpic.net/free-photo/high-tech-portrait-young-girl-with-futuristic-style_23-2151133569.jpg" },
{ id: "5", name: "Dragon Soul", price: "Action", variant: "2024", imageSrc: "http://img.b2bpic.net/free-photo/dark-style-ninja-naruto_23-2151278793.jpg" },
{ id: "6", name: "Elemental Mage", price: "Fantasy", variant: "2023", imageSrc: "http://img.b2bpic.net/free-photo/high-tech-portrait-young-girl-with-futuristic-style_23-2151133576.jpg" },
{ id: "4", name: "Cloud Princess", price: "Adventure", variant: "2022", imageSrc: "http://img.b2bpic.net/high-tech-portrait-young-girl-with-futuristic-style_23-2151133569.jpg" },
{ id: "5", name: "Dragon Soul", price: "Action", variant: "2024", imageSrc: "http://img.b2bpic.net/dark-style-ninja-naruto_23-2151278793.jpg" },
{ id: "6", name: "Elemental Mage", price: "Fantasy", variant: "2023", imageSrc: "http://img.b2bpic.net/high-tech-portrait-young-girl-with-futuristic-style_23-2151133576.jpg" },
];
const filteredAnime = filter === "all" ? allAnime : allAnime.filter(a => a.price === filter);
@@ -64,6 +64,7 @@ export default function AnimeCatalogPage() {
animationType="slide-up"
title=""
description=""
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
@@ -76,4 +77,4 @@ export default function AnimeCatalogPage() {
</ReactLenis>
</ThemeProvider>
);
}
}