feat(UI): Add custom favicon to all HTML pages
- Added a custom favicon (duckcash-duck.png) link to 404.html, index.html, and unavailable.html for a consistent brand presence across the site. - Improved readability of HTML code formatting in index.html pricing section. Enhances visual branding and ensures a cohesive user experience.
This commit is contained in:
parent
cbd1ff0fea
commit
f1955ab3b6
3 changed files with 27 additions and 7 deletions
1
404.html
1
404.html
|
@ -17,6 +17,7 @@
|
|||
rel="stylesheet"
|
||||
/>
|
||||
<link href="assets/css/style.css" rel="stylesheet" />
|
||||
<link rel="icon" type="image/png" href="assets/img/duckcash-duck.png" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
|
32
index.html
32
index.html
|
@ -17,6 +17,7 @@
|
|||
rel="stylesheet"
|
||||
/>
|
||||
<link href="assets/css/style.css" rel="stylesheet" />
|
||||
<link rel="icon" type="image/png" href="assets/img/duckcash-duck.png" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -155,14 +156,19 @@
|
|||
<div class="pricing-card card p-4">
|
||||
<div class="card-body">
|
||||
<h3 class="card-title">Basic</h3>
|
||||
<p class="price"><i class="fas fa-bread-slice" title="Slices of Bread"></i> 0/month</p>
|
||||
<p class="price">
|
||||
<i class="fas fa-bread-slice" title="Slices of Bread"></i>
|
||||
0/month
|
||||
</p>
|
||||
<p class="card-text">Basic features for individual ducks.</p>
|
||||
<ul class="list-unstyled">
|
||||
<li>Easy to Use</li>
|
||||
<li>Secure Transactions</li>
|
||||
<li>Instant Transfers</li>
|
||||
</ul>
|
||||
<a href="unavailable.html" class="btn btn-primary">Get Started</a>
|
||||
<a href="unavailable.html" class="btn btn-primary"
|
||||
>Get Started</a
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -170,14 +176,19 @@
|
|||
<div class="pricing-card card p-4">
|
||||
<div class="card-body">
|
||||
<h3 class="card-title">Pro</h3>
|
||||
<p class="price"><i class="fas fa-bread-slice" title="Slices of Bread"></i> 10/month</p>
|
||||
<p class="price">
|
||||
<i class="fas fa-bread-slice" title="Slices of Bread"></i>
|
||||
10/month
|
||||
</p>
|
||||
<p class="card-text">Advanced features for power ducks.</p>
|
||||
<ul class="list-unstyled">
|
||||
<li>All Basic Features</li>
|
||||
<li>Priority Support</li>
|
||||
<li>Advanced Analytics</li>
|
||||
</ul>
|
||||
<a href="unavailable.html" class="btn btn-primary">Get Started</a>
|
||||
<a href="unavailable.html" class="btn btn-primary"
|
||||
>Get Started</a
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -185,7 +196,10 @@
|
|||
<div class="pricing-card card p-4">
|
||||
<div class="card-body">
|
||||
<h3 class="card-title">Enterprise</h3>
|
||||
<p class="price"><i class="fas fa-bread-slice" title="Slices of Bread"></i> 50/month</p>
|
||||
<p class="price">
|
||||
<i class="fas fa-bread-slice" title="Slices of Bread"></i>
|
||||
50/month
|
||||
</p>
|
||||
<p class="card-text">
|
||||
Complete solutions for duck enterprises.
|
||||
</p>
|
||||
|
@ -194,7 +208,9 @@
|
|||
<li>Custom Solutions</li>
|
||||
<li>Dedicated Support</li>
|
||||
</ul>
|
||||
<a href="unavailable.html" class="btn btn-primary">Get Started</a>
|
||||
<a href="unavailable.html" class="btn btn-primary"
|
||||
>Get Started</a
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -209,7 +225,9 @@
|
|||
Experience the future of duck payments with Duck.cash. Sign up now and
|
||||
make your transactions as smooth as a duck's feathers.
|
||||
</p>
|
||||
<a href="unavailable.html" class="btn btn-lg btn-primary">Sign Up Now</a>
|
||||
<a href="unavailable.html" class="btn btn-lg btn-primary"
|
||||
>Sign Up Now</a
|
||||
>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
rel="stylesheet"
|
||||
/>
|
||||
<link href="assets/css/style.css" rel="stylesheet" />
|
||||
<link rel="icon" type="image/png" href="assets/img/duckcash-duck.png" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
|
Loading…
Reference in a new issue