develop #36

Merged
vex merged 41 commits from develop into main 2025-04-29 07:58:19 +00:00
3 changed files with 2 additions and 74 deletions
Showing only changes of commit 21acc115b8 - Show all commits

2
.idea/Webshop.iml generated
View File

@ -5,7 +5,7 @@
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="font-awesome" level="application" />
<orderEntry type="library" name="boxicons" level="application" />
<orderEntry type="library" name="boxicons" level="application" />
</component>
</module>

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="JavaScriptLibraryMappings">
<file url="file://$PROJECT_DIR$" libraries="{HTML, HTTP Pre-Request and Response Handler}" />
<file url="file://$PROJECT_DIR$" libraries="{HTML, HTTP Pre-Request and Response Handler, boxicons}" />
</component>
</project>

View File

@ -96,78 +96,6 @@
<div id="footer"></div>
</div>
<!-- Wrapper für die gesamte Seite -->
<div class="wrapper">
<!-- Header -->
<header>
<h1>Autohändler Webshop</h1>
<div class="header-right">
<a href="/login" class="login-btn">Login</a>
<a href="/warenkorb" class="cart">
<i class='bx bx-cart'></i>
<span class="cart-count">0</span>
</a>
</div>
</header>
<!-- Navigationsleiste -->
<nav class="menu">
<ul class="menu-list">
<li class="menu-item">
<a href="#">Startseite</a>
</li>
<li class="menu-item">
<a href="#">Neuwagen</a>
</li>
<li class="menu-item">
<a href="#">Gebrauchtwagen</a>
</li>
<li class="menu-item">
<a href="#">Angebote</a>
</li>
<li class="menu-item">
<a href="#">Kontakt</a>
</li>
</ul>
</nav>
<!-- Hauptinhalt -->
<main>
<div class="search-bar">
<input type="text" placeholder="Marke oder Modell eingeben">
<select>
<option>Fahrzeugtyp</option>
<option>SUV</option>
<option>Limousine</option>
<option>Kombi</option>
</select>
<select>
<option>Preisspanne</option>
<option>Bis 10.000€</option>
<option>Bis 20.000€</option>
<option>Bis 50.000€</option>
</select>
<button>Suchen</button>
</div>
<section class="card-grid">
<div class="card">
<img src="https://via.placeholder.com/150" alt="Auto">
<h3>BMW 3er Limousine</h3>
<p>Preis: 35.000€</p>
<p>Baujahr: 2020 | Kilometerstand: 20.000 km</p>
<button class="add-to-cart">Zum Warenkorb hinzufügen</button>
</div>
<div class="card">
<img src="https://via.placeholder.com/150" alt="Auto">
<h3>Audi Q5</h3>
<p>Preis: 50.000€</p>
<p>Baujahr: 2022 | Kilometerstand: 10.000 km</p>
<button class="add-to-cart">Zum Warenkorb hinzufügen</button>
</div>
</section>
</main>
</div>
<!-- Scripts -->
<script src="startseite.js"></script>
</body>