JSFiddle - React, Tailwind, and code Playground

by borayeris

HTML

<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<style>
    body { font-family: 'Arial', sans-serif; background-color: #f4f4f4; display: flex; flex-direction: column; align-items: center; padding: 50px; }
    .container { display: flex; gap: 50px; flex-wrap: wrap; justify-content: center; }
    .logo-box { background: white; padding: 40px; border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); text-align: center; width: 300px; display: flex; flex-direction: column; align-items: center; }
    h3 { color: #333; margin-bottom: 20px; font-size: 16px; text-transform: uppercase; letter-spacing: 1px; }
    .desc { color: #666; font-size: 12px; margin-top: 15px; }
</style>
</head>
<body>

    <h1 style="color:#2C3E50;">Uzmanlar Dekorasyon - Logo Konseptleri</h1>
    
    <div class="container">

        <div class="logo-box">
            <h3>Konsept 1: Monogram</h3>
            <svg width="150" height="150" viewBox="0 0 100 100">
                <path d="M20,20 V70 A10,10 0 0,0 30,80 H80" fill="none" stroke="#2C3E50" stroke-width="12" stroke-linecap="square"/>
                <path d="M40,20 V60 A10,10 0 0,0 50,70 H80 V40" fill="none" stroke="#C5A059" stroke-width="12" stroke-linecap="square"/>
            </svg>
            <div style="margin-top:10px; font-weight:bold; color:#2C3E50; font-size:20px;">UZMANLAR</div>
            <div style="color:#C5A059; font-size:12px; letter-spacing:2px;">DEKORASYON</div>
            <p class="desc">U ve D harflerinin iç içe geçtiği, mimari planı andıran yapı.</p>
        </div>

        <div class="logo-box">
            <h3>Konsept 2: Minimalist Çatı</h3>
            <svg width="150" height="150" viewBox="0 0 100 100">
                <path d="M10,60 L50,20 L90,60" fill="none" stroke="#2C3E50" stroke-width="8" stroke-linecap="round" stroke-linejoin="round"/>
                <path d="M35,60 L50,45 L65,60" fill="none" stroke="#C5A059" stroke-width="8" stroke-linecap="round"...