adquill-dashboard / index.html
Generaltoa's picture
The Ad details page in Quora Ads showing:
4cb5a08 verified
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AdQuill Dashboard - Quora Ad Details</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<link rel="stylesheet" href="style.css">
<script src="components/navbar.js"></script>
<script src="components/ad-header.js"></script>
<script src="components/ad-details-card.js"></script>
<script src="components/ad-preview.js"></script>
</head>
<body class="bg-gray-900 text-white min-h-screen">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-8">
<custom-ad-header></custom-ad-header>
<div class="grid grid-cols-1 lg:grid-cols-3 gap-8 mt-8">
<div class="lg:col-span-2">
<custom-ad-details-card></custom-ad-details-card>
</div>
<div class="lg:col-span-1">
<custom-ad-preview></custom-ad-preview>
</div>
</div>
</main>
<script src="script.js"></script>
<script>
feather.replace();
</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>