import React, { useState, useEffect } from 'react'; import { Menu, X, PenTool, TrendingUp, Shirt, ChevronRight, ArrowRight, CheckCircle2, Instagram, Twitter, Linkedin } from 'lucide-react'; export default function App() { const [isScrolled, setIsScrolled] = useState(false); const [mobileMenuOpen, setMobileMenuOpen] = useState(false); // Handle scroll effect for navbar useEffect(() => { const handleScroll = () => { setIsScrolled(window.scrollY > 20); }; window.addEventListener('scroll', handleScroll); return () => window.removeEventListener('scroll', handleScroll); }, []); return (
{/* Navigation */} {/* Hero Section */}
{/* Background Glow Elements */}
Accepting New Clients

Crafting Identities
Scaling Brands.

Artshop is a premium design studio specializing in foundational brand identity, high-converting ad creatives, and custom apparel illustration.

{/* Core Services Section */}

Our Core Triad

We focus on three highly specialized areas to take your brand from inception to monetization and merchandise.

{/* Service 1 */}
🔥 MAIN

Logo & Brand Identity

We craft the foundational visual language of your business. From striking logos to complete brand guidelines, we make sure you stand out in a crowded market.

    {['Custom Logo Design', 'Brand Guidelines', 'Typography & Color Systems'].map((item, i) => (
  • {item}
  • ))}
{/* Service 2 */}
💰 MONEY

Ad Creatives

Turn your new identity into revenue. We design high-converting, scroll-stopping ad creatives specifically tailored for social media and performance marketing.

    {['Facebook & IG Ads', 'Retargeting Banners', 'A/B Tested Creatives'].map((item, i) => (
  • {item}
  • ))}
{/* Service 3 */}
👕 BUSINESS

Apparel & Patterns

We create bespoke illustrations and seamless pattern designs ready for T-shirt production, helping you launch or scale your merchandise line.

    {['T-shirt Illustrations', 'Seamless Pattern Design', 'Print-Ready Files'].map((item, i) => (
  • {item}
  • ))}
{/* The Artshop Advantage (Process) */}

From Concept to Conversion.

Unlike traditional agencies that only give you a logo and walk away, Artshop builds ecosystems. We design your identity, create the ads that sell it, and design the merchandise your fans will wear.

1

Establish the Brand

We nail the aesthetics. Colors, typography, and a logo that tells your story.

2

Drive the Traffic

Using your new branding, we design ad creatives that command attention and drive clicks.

3

Monetize with Merch

We create stunning illustrations and patterns to put your brand onto T-shirts and physical products.

{/* Visual Graphic Placeholder */}
A
Artshop Mockup
Client Presentation
{/* CTA Section */}

Ready to Elevate Your Brand?

Whether you need a complete rebrand, high-converting ad graphics, or fresh T-shirt designs, Artshop is ready to collaborate.

{/* Footer */}
); }
Scroll to Top