feat: implement dynamic categories, admin category CRUD, fix routing and cleanup
This commit is contained in:
@@ -0,0 +1,65 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="tr">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Marmaris Local - Widget Test Sayfası</title>
|
||||
<style>
|
||||
body {
|
||||
background-color: #FBFAF6;
|
||||
color: #123238;
|
||||
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
|
||||
padding: 40px 20px;
|
||||
margin: 0;
|
||||
}
|
||||
.container {
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
h1 {
|
||||
font-size: 24px;
|
||||
font-weight: 800;
|
||||
border-bottom: 2px dashed #12323815;
|
||||
padding-bottom: 12px;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
h2 {
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
margin-top: 30px;
|
||||
margin-bottom: 10px;
|
||||
text-transform: uppercase;
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.05em;
|
||||
color: #D23B68;
|
||||
}
|
||||
.demo-box {
|
||||
background: white;
|
||||
border: 1px solid #12323810;
|
||||
border-radius: 12px;
|
||||
padding: 20px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="container">
|
||||
<h1>marmaris local widget demo</h1>
|
||||
<p>Bu sayfa, Muğla Dijital Medya ortak sitelerine yerleştirilecek olan <strong>bölgesel öneri widget'ının</strong> önizlemesini test etmek amacıyla oluşturulmuştur.</p>
|
||||
|
||||
<h2>1. Açık Tema Demo (data-neighborhood="yat-limani")</h2>
|
||||
<div class="demo-box">
|
||||
<!-- Widget Script Embed -->
|
||||
<script src="./widget.js" data-neighborhood="yat-limani" data-theme="light"></script>
|
||||
</div>
|
||||
|
||||
<h2>2. Koyu Tema Demo (data-neighborhood="yat-limani" data-theme="dark")</h2>
|
||||
<div class="demo-box" style="background-color: #1a1a1a;">
|
||||
<!-- Widget Script Embed -->
|
||||
<script src="./widget.js" data-neighborhood="yat-limani" data-theme="dark"></script>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user