import { Navigation } from "@/components/navigation"
import { SparkleEffect } from "@/components/sparkle-effect"
import { Card } from "@/components/ui/card"
import { Palette } from "lucide-react"
export default function GalleryPage() {
const artworks = [
{
id: 1,
title: "Magical Girl Transformation",
description: "A magical girl in the middle of her transformation sequence with sparkles everywhere!",
query: "anime magical girl transformation with sparkles and rainbow effects",
},
{
id: 2,
title: "Dragon Spirit",
description: "A cute dragon spirit with colorful scales and glowing eyes",
query: "cute anime dragon spirit with rainbow scales and sparkles",
},
{
id: 3,
title: "Cherry Blossom Dreams",
description: "An anime character surrounded by cherry blossoms and petals",
query: "anime character with cherry blossoms and pink petals floating",
},
{
id: 4,
title: "Star Guardian",
description: "A hero protecting the stars with magical powers",
query: "anime star guardian with magical staff and celestial effects",
},
{
id: 5,
title: "Rainbow Warrior",
description: "A brave warrior with rainbow-colored armor and weapons",
query: "anime warrior with rainbow armor and colorful magical effects",
},
{
id: 6,
title: "Fairy Friend",
description: "A tiny fairy with glittering wings and a big smile",
query: "cute anime fairy with sparkly wings and magical dust",
},
]
return (
{/* Header */}
Art Gallery
Explore my magical anime creations! ✨🎨
{/* Gallery Grid */}
{artworks.map((artwork) => (
{artwork.title}
{artwork.description}
))}
{/* Coming Soon */}
More Art Coming Soon! 🌟
I'm always creating new pieces! Check back often to see my latest anime artwork filled with rainbows and
sparkles!
)
}