import React from "react"; import { Button } from "@/components/ui/button"; import { Card, CardContent } from "@/components/ui/card"; import { Instagram, Facebook, Twitter, Mail } from "lucide-react"; const featuredArt = [ { title: "Sunset Over Water", image: "/images/art1.jpg" }, { title: "Forest Whisper", image: "/images/art2.jpg" }, { title: "Golden Dreams", image: "/images/art3.jpg" }, ]; const gallery1 = [ "/images/gallery1-1.jpg", "/images/gallery1-2.jpg", "/images/gallery1-3.jpg", ]; const gallery2 = [ "/images/gallery2-1.jpg", "/images/gallery2-2.jpg", "/images/gallery2-3.jpg", ]; const gallery3 = [ "/images/gallery3-1.jpg", "/images/gallery3-2.jpg", "/images/gallery3-3.jpg", ]; export default function ArtistWebsite() { return (
{/* Hero Section */}

Welcome to My Art World

Original paintings and visual storytelling

{/* About Me */}

About the Artist

I am a traditional visual artist working primarily in oil and watercolor. My work draws inspiration from the quiet beauty of everyday life and the rich textures of nature. Through color and form, I aim to evoke emotion and invite the viewer into a contemplative space.

{/* Featured Gallery */}

Featured Artworks

{featuredArt.map((art, index) => ( {art.title}

{art.title}

))}
{/* Gallery 1 */}

Landscapes

{gallery1.map((img, index) => ( {`Landscape ))}
{/* Gallery 2 */}

Portraits

{gallery2.map((img, index) => ( {`Portrait ))}
{/* Gallery 3 */}

Still Life

{gallery3.map((img, index) => ( {`Still ))}
{/* Contact Section */}

Contact Me

Interested in purchasing artwork, commissions, or just want to say hello? Reach out below:

{/* Footer */}
); }