Komponenten Layout-Komponenten Portfolio-Layout im Dunkelmodus

Portfolio-Layout im Dunkelmodus

Eine responsive Layout-Komponente im Dunkelmodus für Portfolios mit einem monochromatischen Farbschema unter Verwendung von Tailwind CSS. Enthält Platzhalter für Inhalte und ist für moderate Komplexität ohne JavaScript ausgelegt.

Vorschau

HTML-Code

<div class="min-h-screen bg-gray-900 text-gray-200 p-4">
  <div class="container mx-auto">
    <header class="flex justify-between items-center py-6">
      <h1 class="text-2xl font-bold text-gray-100">My Portfolio</h1>
      <nav>
        <ul class="flex space-x-4">
          <li><a href="#" class="hover:text-gray-100">Home</a></li>
          <li><a href="#" class="hover:text-gray-100">Projects</a></li>
          <li><a href="#" class="hover:text-gray-100">Contact</a></li>
        </ul>
      </nav>
    </header>
    
    <main class="grid grid-cols-1 md:grid-cols-2 gap-8 py-8">
      <section>
        <h2 class="text-xl font-semibold mb-4">About Me</h2>
        <p class="text-gray-400">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
      </section>
      
      <section>
        <h2 class="text-xl font-semibold mb-4">Recent Projects</h2>
        <div class="space-y-4">
          <div class="bg-gray-800 p-4 rounded-md">
            <h3 class="font-semibold">Project One</h3>
            <p class="text-gray-500 text-sm">A brief description of project one.</p>
          </div>
          <div class="bg-gray-800 p-4 rounded-md">
            <h3 class="font-semibold">Project Two</h3>
            <p class="text-gray-500 text-sm">A brief description of project two.</p>
          </div>
        </div>
      </section>
    </main>
    
    <footer class="text-center py-6 text-gray-500">
      © 2023 My Portfolio
    </footer>
  </div>
</div>

Verwandte Komponenten

E-Commerce-Layout-Komponente

Eine responsive E-Commerce-Layout-Komponente mit Unterstützung für dunkle Themen, die mit Tailwind CSS nach den Prinzipien des Material Designs erstellt wurde. Es enthält eine Navigationsleiste, einen Hauptinhaltsbereich mit Produktlisten und eine Fußzeile. Die Farbgebung ist pastellfarben.

Offen

Minimalistische Blog-Layout-Komponente

Minimalistische Blog-Layout-Komponente mit monochromatischem Farbschema für den Konsum von Inhalten, reaktionsschnell und mit Unterstützung für dunkle Themen.

Offen

3D-Layout-Komponente

Eine responsive 3D Design-Layoutkomponente für soziale Medien mit einem Graustufen-Farbschema. Geeignet für Schnittstellen in sozialen Netzwerken.

Offen