please redesign the site how you see fit addingf any or deleting any elements, the goal being, a site that is straightforwarf, correct, and attractive to lclinets
Browse files- README.md +8 -5
- components/footer.js +179 -0
- components/header.js +151 -0
- index.html +261 -19
- script.js +37 -0
- style.css +47 -18
README.md
CHANGED
|
@@ -1,10 +1,13 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: LawConnect Legal Services
|
| 3 |
+
colorFrom: purple
|
| 4 |
+
colorTo: pink
|
| 5 |
+
emoji: 🐳
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
| 8 |
+
tags:
|
| 9 |
+
- deepsite-v3
|
| 10 |
---
|
| 11 |
|
| 12 |
+
# Welcome to your new DeepSite project!
|
| 13 |
+
This project was created with [DeepSite](https://huggingface.co/deepsite).
|
components/footer.js
ADDED
|
@@ -0,0 +1,179 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
class CustomFooter extends HTMLElement {
|
| 2 |
+
connectedCallback() {
|
| 3 |
+
this.attachShadow({ mode: 'open' });
|
| 4 |
+
this.shadowRoot.innerHTML = `
|
| 5 |
+
<style>
|
| 6 |
+
:host {
|
| 7 |
+
display: block;
|
| 8 |
+
}
|
| 9 |
+
|
| 10 |
+
.footer {
|
| 11 |
+
background-color: #1e3a8a;
|
| 12 |
+
color: white;
|
| 13 |
+
padding: 3rem 0 1rem;
|
| 14 |
+
}
|
| 15 |
+
|
| 16 |
+
.container {
|
| 17 |
+
max-width: 1200px;
|
| 18 |
+
margin: 0 auto;
|
| 19 |
+
padding: 0 1rem;
|
| 20 |
+
}
|
| 21 |
+
|
| 22 |
+
.footer-grid {
|
| 23 |
+
display: grid;
|
| 24 |
+
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
| 25 |
+
gap: 2rem;
|
| 26 |
+
margin-bottom: 3rem;
|
| 27 |
+
}
|
| 28 |
+
|
| 29 |
+
.footer-column h3 {
|
| 30 |
+
font-family: 'Playfair Display', serif;
|
| 31 |
+
font-size: 1.5rem;
|
| 32 |
+
margin-bottom: 1.5rem;
|
| 33 |
+
position: relative;
|
| 34 |
+
padding-bottom: 0.5rem;
|
| 35 |
+
}
|
| 36 |
+
|
| 37 |
+
.footer-column h3::after {
|
| 38 |
+
content: '';
|
| 39 |
+
position: absolute;
|
| 40 |
+
bottom: 0;
|
| 41 |
+
left: 0;
|
| 42 |
+
width: 50px;
|
| 43 |
+
height: 3px;
|
| 44 |
+
background-color: #f59e0b;
|
| 45 |
+
}
|
| 46 |
+
|
| 47 |
+
.footer-column ul {
|
| 48 |
+
list-style: none;
|
| 49 |
+
padding: 0;
|
| 50 |
+
}
|
| 51 |
+
|
| 52 |
+
.footer-column ul li {
|
| 53 |
+
margin-bottom: 0.75rem;
|
| 54 |
+
}
|
| 55 |
+
|
| 56 |
+
.footer-column ul li a {
|
| 57 |
+
color: #d1d5db;
|
| 58 |
+
text-decoration: none;
|
| 59 |
+
transition: color 0.3s;
|
| 60 |
+
}
|
| 61 |
+
|
| 62 |
+
.footer-column ul li a:hover {
|
| 63 |
+
color: #f59e0b;
|
| 64 |
+
}
|
| 65 |
+
|
| 66 |
+
.contact-info {
|
| 67 |
+
display: flex;
|
| 68 |
+
align-items: center;
|
| 69 |
+
margin-bottom: 1rem;
|
| 70 |
+
}
|
| 71 |
+
|
| 72 |
+
.contact-info i {
|
| 73 |
+
margin-right: 0.75rem;
|
| 74 |
+
color: #f59e0b;
|
| 75 |
+
}
|
| 76 |
+
|
| 77 |
+
.social-links {
|
| 78 |
+
display: flex;
|
| 79 |
+
gap: 1rem;
|
| 80 |
+
margin-top: 1.5rem;
|
| 81 |
+
}
|
| 82 |
+
|
| 83 |
+
.social-links a {
|
| 84 |
+
display: flex;
|
| 85 |
+
align-items: center;
|
| 86 |
+
justify-content: center;
|
| 87 |
+
width: 40px;
|
| 88 |
+
height: 40px;
|
| 89 |
+
background-color: rgba(255, 255, 255, 0.1);
|
| 90 |
+
border-radius: 50%;
|
| 91 |
+
color: white;
|
| 92 |
+
transition: all 0.3s;
|
| 93 |
+
}
|
| 94 |
+
|
| 95 |
+
.social-links a:hover {
|
| 96 |
+
background-color: #f59e0b;
|
| 97 |
+
transform: translateY(-3px);
|
| 98 |
+
}
|
| 99 |
+
|
| 100 |
+
.copyright {
|
| 101 |
+
text-align: center;
|
| 102 |
+
padding-top: 2rem;
|
| 103 |
+
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
| 104 |
+
color: #d1d5db;
|
| 105 |
+
font-size: 0.875rem;
|
| 106 |
+
}
|
| 107 |
+
|
| 108 |
+
@media (max-width: 768px) {
|
| 109 |
+
.footer-grid {
|
| 110 |
+
grid-template-columns: 1fr;
|
| 111 |
+
}
|
| 112 |
+
}
|
| 113 |
+
</style>
|
| 114 |
+
|
| 115 |
+
<footer class="footer">
|
| 116 |
+
<div class="container">
|
| 117 |
+
<div class="footer-grid">
|
| 118 |
+
<div class="footer-column">
|
| 119 |
+
<h3>LawConnect</h3>
|
| 120 |
+
<p>Providing expert legal services with integrity and dedication since 2003. We're committed to achieving the best possible outcomes for our clients.</p>
|
| 121 |
+
<div class="social-links">
|
| 122 |
+
<a href="#"><i data-feather="facebook"></i></a>
|
| 123 |
+
<a href="#"><i data-feather="twitter"></i></a>
|
| 124 |
+
<a href="#"><i data-feather="linkedin"></i></a>
|
| 125 |
+
<a href="#"><i data-feather="instagram"></i></a>
|
| 126 |
+
</div>
|
| 127 |
+
</div>
|
| 128 |
+
|
| 129 |
+
<div class="footer-column">
|
| 130 |
+
<h3>Practice Areas</h3>
|
| 131 |
+
<ul>
|
| 132 |
+
<li><a href="#">Corporate Law</a></li>
|
| 133 |
+
<li><a href="#">Real Estate Law</a></li>
|
| 134 |
+
<li><a href="#">Family Law</a></li>
|
| 135 |
+
<li><a href="#">Criminal Defense</a></li>
|
| 136 |
+
<li><a href="#">Personal Injury</a></li>
|
| 137 |
+
<li><a href="#">Estate Planning</a></li>
|
| 138 |
+
</ul>
|
| 139 |
+
</div>
|
| 140 |
+
|
| 141 |
+
<div class="footer-column">
|
| 142 |
+
<h3>Contact Us</h3>
|
| 143 |
+
<div class="contact-info">
|
| 144 |
+
<i data-feather="map-pin"></i>
|
| 145 |
+
<span>123 Legal Avenue, Suite 100<br>New York, NY 10001</span>
|
| 146 |
+
</div>
|
| 147 |
+
<div class="contact-info">
|
| 148 |
+
<i data-feather="phone"></i>
|
| 149 |
+
<span>(123) 456-7890</span>
|
| 150 |
+
</div>
|
| 151 |
+
<div class="contact-info">
|
| 152 |
+
<i data-feather="mail"></i>
|
| 153 |
+
<span>info@lawconnect.com</span>
|
| 154 |
+
</div>
|
| 155 |
+
<div class="contact-info">
|
| 156 |
+
<i data-feather="clock"></i>
|
| 157 |
+
<span>Mon-Fri: 9AM - 6PM</span>
|
| 158 |
+
</div>
|
| 159 |
+
</div>
|
| 160 |
+
</div>
|
| 161 |
+
|
| 162 |
+
<div class="copyright">
|
| 163 |
+
<p>© 2023 LawConnect Legal Services. All rights reserved.</p>
|
| 164 |
+
</div>
|
| 165 |
+
</div>
|
| 166 |
+
</footer>
|
| 167 |
+
`;
|
| 168 |
+
|
| 169 |
+
// Initialize Feather icons
|
| 170 |
+
const featherScript = document.createElement('script');
|
| 171 |
+
featherScript.src = 'https://unpkg.com/feather-icons';
|
| 172 |
+
featherScript.onload = () => {
|
| 173 |
+
feather.replace();
|
| 174 |
+
};
|
| 175 |
+
this.shadowRoot.appendChild(featherScript);
|
| 176 |
+
}
|
| 177 |
+
}
|
| 178 |
+
|
| 179 |
+
customElements.define('custom-footer', CustomFooter);
|
components/header.js
ADDED
|
@@ -0,0 +1,151 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
class CustomHeader extends HTMLElement {
|
| 2 |
+
connectedCallback() {
|
| 3 |
+
this.attachShadow({ mode: 'open' });
|
| 4 |
+
this.shadowRoot.innerHTML = `
|
| 5 |
+
<style>
|
| 6 |
+
:host {
|
| 7 |
+
display: block;
|
| 8 |
+
}
|
| 9 |
+
|
| 10 |
+
.header {
|
| 11 |
+
background-color: white;
|
| 12 |
+
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
| 13 |
+
position: sticky;
|
| 14 |
+
top: 0;
|
| 15 |
+
z-index: 50;
|
| 16 |
+
}
|
| 17 |
+
|
| 18 |
+
.container {
|
| 19 |
+
max-width: 1200px;
|
| 20 |
+
margin: 0 auto;
|
| 21 |
+
padding: 0 1rem;
|
| 22 |
+
}
|
| 23 |
+
|
| 24 |
+
.nav-container {
|
| 25 |
+
display: flex;
|
| 26 |
+
justify-content: space-between;
|
| 27 |
+
align-items: center;
|
| 28 |
+
padding: 1rem 0;
|
| 29 |
+
}
|
| 30 |
+
|
| 31 |
+
.logo {
|
| 32 |
+
font-family: 'Playfair Display', serif;
|
| 33 |
+
font-weight: 700;
|
| 34 |
+
font-size: 1.5rem;
|
| 35 |
+
color: #1e3a8a;
|
| 36 |
+
text-decoration: none;
|
| 37 |
+
}
|
| 38 |
+
|
| 39 |
+
.logo span {
|
| 40 |
+
color: #f59e0b;
|
| 41 |
+
}
|
| 42 |
+
|
| 43 |
+
.nav-links {
|
| 44 |
+
display: flex;
|
| 45 |
+
list-style: none;
|
| 46 |
+
}
|
| 47 |
+
|
| 48 |
+
.nav-links li {
|
| 49 |
+
margin-left: 2rem;
|
| 50 |
+
}
|
| 51 |
+
|
| 52 |
+
.nav-links a {
|
| 53 |
+
text-decoration: none;
|
| 54 |
+
color: #374151;
|
| 55 |
+
font-weight: 500;
|
| 56 |
+
transition: color 0.3s;
|
| 57 |
+
}
|
| 58 |
+
|
| 59 |
+
.nav-links a:hover {
|
| 60 |
+
color: #1e3a8a;
|
| 61 |
+
}
|
| 62 |
+
|
| 63 |
+
.mobile-menu-button {
|
| 64 |
+
display: none;
|
| 65 |
+
background: none;
|
| 66 |
+
border: none;
|
| 67 |
+
cursor: pointer;
|
| 68 |
+
}
|
| 69 |
+
|
| 70 |
+
.mobile-menu {
|
| 71 |
+
display: none;
|
| 72 |
+
position: absolute;
|
| 73 |
+
top: 100%;
|
| 74 |
+
left: 0;
|
| 75 |
+
right: 0;
|
| 76 |
+
background: white;
|
| 77 |
+
padding: 1rem;
|
| 78 |
+
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
|
| 79 |
+
}
|
| 80 |
+
|
| 81 |
+
.mobile-menu.active {
|
| 82 |
+
display: block;
|
| 83 |
+
}
|
| 84 |
+
|
| 85 |
+
.mobile-menu ul {
|
| 86 |
+
list-style: none;
|
| 87 |
+
}
|
| 88 |
+
|
| 89 |
+
.mobile-menu li {
|
| 90 |
+
margin-bottom: 1rem;
|
| 91 |
+
}
|
| 92 |
+
|
| 93 |
+
.mobile-menu a {
|
| 94 |
+
text-decoration: none;
|
| 95 |
+
color: #374151;
|
| 96 |
+
font-weight: 500;
|
| 97 |
+
}
|
| 98 |
+
|
| 99 |
+
@media (max-width: 768px) {
|
| 100 |
+
.nav-links {
|
| 101 |
+
display: none;
|
| 102 |
+
}
|
| 103 |
+
|
| 104 |
+
.mobile-menu-button {
|
| 105 |
+
display: block;
|
| 106 |
+
}
|
| 107 |
+
}
|
| 108 |
+
</style>
|
| 109 |
+
|
| 110 |
+
<header class="header">
|
| 111 |
+
<div class="container">
|
| 112 |
+
<div class="nav-container">
|
| 113 |
+
<a href="/" class="logo">Law<span>Connect</span></a>
|
| 114 |
+
|
| 115 |
+
<ul class="nav-links">
|
| 116 |
+
<li><a href="/">Home</a></li>
|
| 117 |
+
<li><a href="#services">Services</a></li>
|
| 118 |
+
<li><a href="#about">About</a></li>
|
| 119 |
+
<li><a href="#contact">Contact</a></li>
|
| 120 |
+
</ul>
|
| 121 |
+
|
| 122 |
+
<button id="mobile-menu-button" class="mobile-menu-button">
|
| 123 |
+
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
| 124 |
+
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
|
| 125 |
+
</svg>
|
| 126 |
+
</button>
|
| 127 |
+
</div>
|
| 128 |
+
|
| 129 |
+
<div id="mobile-menu" class="mobile-menu">
|
| 130 |
+
<ul>
|
| 131 |
+
<li><a href="/">Home</a></li>
|
| 132 |
+
<li><a href="#services">Services</a></li>
|
| 133 |
+
<li><a href="#about">About</a></li>
|
| 134 |
+
<li><a href="#contact">Contact</a></li>
|
| 135 |
+
</ul>
|
| 136 |
+
</div>
|
| 137 |
+
</div>
|
| 138 |
+
</header>
|
| 139 |
+
`;
|
| 140 |
+
|
| 141 |
+
// Mobile menu toggle
|
| 142 |
+
const mobileMenuButton = this.shadowRoot.getElementById('mobile-menu-button');
|
| 143 |
+
const mobileMenu = this.shadowRoot.getElementById('mobile-menu');
|
| 144 |
+
|
| 145 |
+
mobileMenuButton.addEventListener('click', () => {
|
| 146 |
+
mobileMenu.classList.toggle('active');
|
| 147 |
+
});
|
| 148 |
+
}
|
| 149 |
+
}
|
| 150 |
+
|
| 151 |
+
customElements.define('custom-header', CustomHeader);
|
index.html
CHANGED
|
@@ -1,19 +1,261 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
</
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>LawConnect Legal Services</title>
|
| 7 |
+
<link rel="stylesheet" href="style.css">
|
| 8 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 9 |
+
<script src="https://unpkg.com/feather-icons"></script>
|
| 10 |
+
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
| 11 |
+
</head>
|
| 12 |
+
<body class="font-sans">
|
| 13 |
+
<custom-header></custom-header>
|
| 14 |
+
|
| 15 |
+
<main>
|
| 16 |
+
<!-- Hero Section -->
|
| 17 |
+
<section class="relative bg-gradient-to-r from-blue-900 to-indigo-900 text-white py-20 md:py-32">
|
| 18 |
+
<div class="container mx-auto px-4 text-center">
|
| 19 |
+
<h1 class="text-4xl md:text-6xl font-playfair font-bold mb-6">Expert Legal Solutions</h1>
|
| 20 |
+
<p class="text-xl md:text-2xl max-w-3xl mx-auto mb-10">Trusted legal representation for individuals and businesses across all practice areas</p>
|
| 21 |
+
<div class="flex flex-col sm:flex-row justify-center gap-4">
|
| 22 |
+
<a href="#contact" class="bg-amber-500 hover:bg-amber-600 text-white font-bold py-3 px-8 rounded-lg transition duration-300">Get Free Consultation</a>
|
| 23 |
+
<a href="#services" class="bg-transparent border-2 border-white hover:bg-white hover:text-indigo-900 text-white font-bold py-3 px-8 rounded-lg transition duration-300">Our Services</a>
|
| 24 |
+
</div>
|
| 25 |
+
</div>
|
| 26 |
+
</section>
|
| 27 |
+
|
| 28 |
+
<!-- Services Section -->
|
| 29 |
+
<section id="services" class="py-20 bg-gray-50">
|
| 30 |
+
<div class="container mx-auto px-4">
|
| 31 |
+
<div class="text-center mb-16">
|
| 32 |
+
<h2 class="text-3xl md:text-4xl font-playfair font-bold text-gray-900 mb-4">Our Legal Services</h2>
|
| 33 |
+
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Comprehensive legal solutions tailored to your specific needs</p>
|
| 34 |
+
</div>
|
| 35 |
+
|
| 36 |
+
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
|
| 37 |
+
<div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition duration-300 border-t-4 border-amber-500">
|
| 38 |
+
<div class="w-16 h-16 bg-amber-100 rounded-full flex items-center justify-center mb-6">
|
| 39 |
+
<i data-feather="briefcase" class="text-amber-600 w-8 h-8"></i>
|
| 40 |
+
</div>
|
| 41 |
+
<h3 class="text-2xl font-bold text-gray-900 mb-4">Corporate Law</h3>
|
| 42 |
+
<p class="text-gray-600 mb-6">Business formation, contracts, compliance, and corporate governance for companies of all sizes.</p>
|
| 43 |
+
<a href="#" class="text-amber-600 font-semibold flex items-center">Learn more <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i></a>
|
| 44 |
+
</div>
|
| 45 |
+
|
| 46 |
+
<div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition duration-300 border-t-4 border-amber-500">
|
| 47 |
+
<div class="w-16 h-16 bg-amber-100 rounded-full flex items-center justify-center mb-6">
|
| 48 |
+
<i data-feather="home" class="text-amber-600 w-8 h-8"></i>
|
| 49 |
+
</div>
|
| 50 |
+
<h3 class="text-2xl font-bold text-gray-900 mb-4">Real Estate Law</h3>
|
| 51 |
+
<p class="text-gray-600 mb-6">Property transactions, zoning issues, landlord-tenant disputes, and title disputes.</p>
|
| 52 |
+
<a href="#" class="text-amber-600 font-semibold flex items-center">Learn more <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i></a>
|
| 53 |
+
</div>
|
| 54 |
+
|
| 55 |
+
<div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition duration-300 border-t-4 border-amber-500">
|
| 56 |
+
<div class="w-16 h-16 bg-amber-100 rounded-full flex items-center justify-center mb-6">
|
| 57 |
+
<i data-feather="users" class="text-amber-600 w-8 h-8"></i>
|
| 58 |
+
</div>
|
| 59 |
+
<h3 class="text-2xl font-bold text-gray-900 mb-4">Family Law</h3>
|
| 60 |
+
<p class="text-gray-600 mb-6">Divorce, child custody, adoption, and domestic relations matters with compassionate guidance.</p>
|
| 61 |
+
<a href="#" class="text-amber-600 font-semibold flex items-center">Learn more <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i></a>
|
| 62 |
+
</div>
|
| 63 |
+
|
| 64 |
+
<div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition duration-300 border-t-4 border-amber-500">
|
| 65 |
+
<div class="w-16 h-16 bg-amber-100 rounded-full flex items-center justify-center mb-6">
|
| 66 |
+
<i data-feather="shield" class="text-amber-600 w-8 h-8"></i>
|
| 67 |
+
</div>
|
| 68 |
+
<h3 class="text-2xl font-bold text-gray-900 mb-4">Criminal Defense</h3>
|
| 69 |
+
<p class="text-gray-600 mb-6">Strong defense against criminal charges with experienced attorneys fighting for your rights.</p>
|
| 70 |
+
<a href="#" class="text-amber-600 font-semibold flex items-center">Learn more <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i></a>
|
| 71 |
+
</div>
|
| 72 |
+
|
| 73 |
+
<div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition duration-300 border-t-4 border-amber-500">
|
| 74 |
+
<div class="w-16 h-16 bg-amber-100 rounded-full flex items-center justify-center mb-6">
|
| 75 |
+
<i data-feather="heart" class="text-amber-600 w-8 h-8"></i>
|
| 76 |
+
</div>
|
| 77 |
+
<h3 class="text-2xl font-bold text-gray-900 mb-4">Personal Injury</h3>
|
| 78 |
+
<p class="text-gray-600 mb-6">Compensation for injuries caused by negligence with dedicated representation.</p>
|
| 79 |
+
<a href="#" class="text-amber-600 font-semibold flex items-center">Learn more <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i></a>
|
| 80 |
+
</div>
|
| 81 |
+
|
| 82 |
+
<div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition duration-300 border-t-4 border-amber-500">
|
| 83 |
+
<div class="w-16 h-16 bg-amber-100 rounded-full flex items-center justify-center mb-6">
|
| 84 |
+
<i data-feather="file-text" class="text-amber-600 w-8 h-8"></i>
|
| 85 |
+
</div>
|
| 86 |
+
<h3 class="text-2xl font-bold text-gray-900 mb-4">Estate Planning</h3>
|
| 87 |
+
<p class="text-gray-600 mb-6">Wills, trusts, probate, and estate administration to protect your legacy.</p>
|
| 88 |
+
<a href="#" class="text-amber-600 font-semibold flex items-center">Learn more <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i></a>
|
| 89 |
+
</div>
|
| 90 |
+
</div>
|
| 91 |
+
</div>
|
| 92 |
+
</section>
|
| 93 |
+
|
| 94 |
+
<!-- About Section -->
|
| 95 |
+
<section class="py-20">
|
| 96 |
+
<div class="container mx-auto px-4">
|
| 97 |
+
<div class="flex flex-col lg:flex-row items-center gap-12">
|
| 98 |
+
<div class="lg:w-1/2">
|
| 99 |
+
<img src="http://static.photos/office/1200x630/42" alt="Legal team" class="rounded-xl shadow-lg">
|
| 100 |
+
</div>
|
| 101 |
+
<div class="lg:w-1/2">
|
| 102 |
+
<h2 class="text-3xl md:text-4xl font-playfair font-bold text-gray-900 mb-6">Why Choose LawConnect</h2>
|
| 103 |
+
<p class="text-gray-600 text-lg mb-8">With over 20 years of experience, our team of legal experts provides personalized solutions tailored to your unique situation. We combine deep legal knowledge with a commitment to client success.</p>
|
| 104 |
+
|
| 105 |
+
<div class="space-y-6">
|
| 106 |
+
<div class="flex items-start">
|
| 107 |
+
<div class="flex-shrink-0 mt-1">
|
| 108 |
+
<div class="w-8 h-8 bg-amber-100 rounded-full flex items-center justify-center">
|
| 109 |
+
<i data-feather="check" class="text-amber-600 w-5 h-5"></i>
|
| 110 |
+
</div>
|
| 111 |
+
</div>
|
| 112 |
+
<div class="ml-4">
|
| 113 |
+
<h3 class="text-xl font-bold text-gray-900">Proven Track Record</h3>
|
| 114 |
+
<p class="text-gray-600 mt-2">Successful outcomes in thousands of cases across multiple practice areas</p>
|
| 115 |
+
</div>
|
| 116 |
+
</div>
|
| 117 |
+
|
| 118 |
+
<div class="flex items-start">
|
| 119 |
+
<div class="flex-shrink-0 mt-1">
|
| 120 |
+
<div class="w-8 h-8 bg-amber-100 rounded-full flex items-center justify-center">
|
| 121 |
+
<i data-feather="check" class="text-amber-600 w-5 h-5"></i>
|
| 122 |
+
</div>
|
| 123 |
+
</div>
|
| 124 |
+
<div class="ml-4">
|
| 125 |
+
<h3 class="text-xl font-bold text-gray-900">Personalized Attention</h3>
|
| 126 |
+
<p class="text-gray-600 mt-2">Direct access to experienced attorneys who understand your specific needs</p>
|
| 127 |
+
</div>
|
| 128 |
+
</div>
|
| 129 |
+
|
| 130 |
+
<div class="flex items-start">
|
| 131 |
+
<div class="flex-shrink-0 mt-1">
|
| 132 |
+
<div class="w-8 h-8 bg-amber-100 rounded-full flex items-center justify-center">
|
| 133 |
+
<i data-feather="check" class="text-amber-600 w-5 h-5"></i>
|
| 134 |
+
</div>
|
| 135 |
+
</div>
|
| 136 |
+
<div class="ml-4">
|
| 137 |
+
<h3 class="text-xl font-bold text-gray-900">Transparent Communication</h3>
|
| 138 |
+
<p class="text-gray-600 mt-2">Clear explanations of legal processes and regular updates on your case</p>
|
| 139 |
+
</div>
|
| 140 |
+
</div>
|
| 141 |
+
</div>
|
| 142 |
+
</div>
|
| 143 |
+
</div>
|
| 144 |
+
</div>
|
| 145 |
+
</section>
|
| 146 |
+
|
| 147 |
+
<!-- Testimonials -->
|
| 148 |
+
<section class="py-20 bg-gray-50">
|
| 149 |
+
<div class="container mx-auto px-4">
|
| 150 |
+
<div class="text-center mb-16">
|
| 151 |
+
<h2 class="text-3xl md:text-4xl font-playfair font-bold text-gray-900 mb-4">Client Testimonials</h2>
|
| 152 |
+
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Hear what our clients have to say about our legal services</p>
|
| 153 |
+
</div>
|
| 154 |
+
|
| 155 |
+
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
|
| 156 |
+
<div class="bg-white p-8 rounded-xl shadow-lg">
|
| 157 |
+
<div class="flex items-center mb-6">
|
| 158 |
+
<div class="w-12 h-12 bg-amber-100 rounded-full flex items-center justify-center">
|
| 159 |
+
<i data-feather="star" class="text-amber-500 w-6 h-6"></i>
|
| 160 |
+
</div>
|
| 161 |
+
<div class="ml-4">
|
| 162 |
+
<div class="flex text-amber-400">
|
| 163 |
+
<i data-feather="star" class="w-5 h-5"></i>
|
| 164 |
+
<i data-feather="star" class="w-5 h-5"></i>
|
| 165 |
+
<i data-feather="star" class="w-5 h-5"></i>
|
| 166 |
+
<i data-feather="star" class="w-5 h-5"></i>
|
| 167 |
+
<i data-feather="star" class="w-5 h-5"></i>
|
| 168 |
+
</div>
|
| 169 |
+
</div>
|
| 170 |
+
</div>
|
| 171 |
+
<p class="text-gray-600 mb-6 italic">"The team at LawConnect helped me navigate a complex business dispute. Their expertise and dedication resulted in a favorable outcome that exceeded my expectations."</p>
|
| 172 |
+
<div class="flex items-center">
|
| 173 |
+
<div class="w-12 h-12 rounded-full bg-gray-300"></div>
|
| 174 |
+
<div class="ml-4">
|
| 175 |
+
<h4 class="font-bold text-gray-900">Michael Thompson</h4>
|
| 176 |
+
<p class="text-gray-600">Corporate Client</p>
|
| 177 |
+
</div>
|
| 178 |
+
</div>
|
| 179 |
+
</div>
|
| 180 |
+
|
| 181 |
+
<div class="bg-white p-8 rounded-xl shadow-lg">
|
| 182 |
+
<div class="flex items-center mb-6">
|
| 183 |
+
<div class="w-12 h-12 bg-amber-100 rounded-full flex items-center justify-center">
|
| 184 |
+
<i data-feather="star" class="text-amber-500 w-6 h-6"></i>
|
| 185 |
+
</div>
|
| 186 |
+
<div class="ml-4">
|
| 187 |
+
<div class="flex text-amber-400">
|
| 188 |
+
<i data-feather="star" class="w-5 h-5"></i>
|
| 189 |
+
<i data-feather="star" class="w-5 h-5"></i>
|
| 190 |
+
<i data-feather="star" class="w-5 h-5"></i>
|
| 191 |
+
<i data-feather="star" class="w-5 h-5"></i>
|
| 192 |
+
<i data-feather="star" class="w-5 h-5"></i>
|
| 193 |
+
</div>
|
| 194 |
+
</div>
|
| 195 |
+
</div>
|
| 196 |
+
<p class="text-gray-600 mb-6 italic">"After my accident, I was overwhelmed with medical bills and lost wages. LawConnect fought for my rights and secured a settlement that covered all my expenses and more."</p>
|
| 197 |
+
<div class="flex items-center">
|
| 198 |
+
<div class="w-12 h-12 rounded-full bg-gray-300"></div>
|
| 199 |
+
<div class="ml-4">
|
| 200 |
+
<h4 class="font-bold text-gray-900">Sarah Johnson</h4>
|
| 201 |
+
<p class="text-gray-600">Personal Injury Client</p>
|
| 202 |
+
</div>
|
| 203 |
+
</div>
|
| 204 |
+
</div>
|
| 205 |
+
|
| 206 |
+
<div class="bg-white p-8 rounded-xl shadow-lg">
|
| 207 |
+
<div class="flex items-center mb-6">
|
| 208 |
+
<div class="w-12 h-12 bg-amber-100 rounded-full flex items-center justify-center">
|
| 209 |
+
<i data-feather="star" class="text-amber-500 w-6 h-6"></i>
|
| 210 |
+
</div>
|
| 211 |
+
<div class="ml-4">
|
| 212 |
+
<div class="flex text-amber-400">
|
| 213 |
+
<i data-feather="star" class="w-5 h-5"></i>
|
| 214 |
+
<i data-feather="star" class="w-5 h-5"></i>
|
| 215 |
+
<i data-feather="star" class="w-5 h-5"></i>
|
| 216 |
+
<i data-feather="star" class="w-5 h-5"></i>
|
| 217 |
+
<i data-feather="star" class="w-5 h-5"></i>
|
| 218 |
+
</div>
|
| 219 |
+
</div>
|
| 220 |
+
</div>
|
| 221 |
+
<p class="text-gray-600 mb-6 italic">"During my divorce proceedings, LawConnect provided compassionate yet firm representation. They guided me through every step and achieved the best possible outcome for my family."</p>
|
| 222 |
+
<div class="flex items-center">
|
| 223 |
+
<div class="w-12 h-12 rounded-full bg-gray-300"></div>
|
| 224 |
+
<div class="ml-4">
|
| 225 |
+
<h4 class="font-bold text-gray-900">Robert Chen</h4>
|
| 226 |
+
<p class="text-gray-600">Family Law Client</p>
|
| 227 |
+
</div>
|
| 228 |
+
</div>
|
| 229 |
+
</div>
|
| 230 |
+
</div>
|
| 231 |
+
</div>
|
| 232 |
+
</section>
|
| 233 |
+
|
| 234 |
+
<!-- Contact CTA -->
|
| 235 |
+
<section id="contact" class="py-20 bg-gradient-to-r from-blue-900 to-indigo-900 text-white">
|
| 236 |
+
<div class="container mx-auto px-4 text-center">
|
| 237 |
+
<h2 class="text-3xl md:text-4xl font-playfair font-bold mb-6">Ready to Get Started?</h2>
|
| 238 |
+
<p class="text-xl max-w-3xl mx-auto mb-10">Schedule your free consultation today and let us help you navigate your legal challenges</p>
|
| 239 |
+
<div class="flex flex-col sm:flex-row justify-center gap-4">
|
| 240 |
+
<a href="tel:+11234567890" class="bg-amber-500 hover:bg-amber-600 text-white font-bold py-3 px-8 rounded-lg transition duration-300 flex items-center justify-center">
|
| 241 |
+
<i data-feather="phone" class="mr-2"></i> Call Now
|
| 242 |
+
</a>
|
| 243 |
+
<a href="mailto:info@lawconnect.com" class="bg-transparent border-2 border-white hover:bg-white hover:text-indigo-900 text-white font-bold py-3 px-8 rounded-lg transition duration-300 flex items-center justify-center">
|
| 244 |
+
<i data-feather="mail" class="mr-2"></i> Email Us
|
| 245 |
+
</a>
|
| 246 |
+
</div>
|
| 247 |
+
</div>
|
| 248 |
+
</section>
|
| 249 |
+
</main>
|
| 250 |
+
|
| 251 |
+
<custom-footer></custom-footer>
|
| 252 |
+
|
| 253 |
+
<script src="components/header.js"></script>
|
| 254 |
+
<script src="components/footer.js"></script>
|
| 255 |
+
<script src="script.js"></script>
|
| 256 |
+
<script>
|
| 257 |
+
feather.replace();
|
| 258 |
+
</script>
|
| 259 |
+
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
|
| 260 |
+
</body>
|
| 261 |
+
</html>
|
script.js
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
// Mobile menu toggle
|
| 2 |
+
document.addEventListener('DOMContentLoaded', function() {
|
| 3 |
+
const mobileMenuButton = document.getElementById('mobile-menu-button');
|
| 4 |
+
const mobileMenu = document.getElementById('mobile-menu');
|
| 5 |
+
|
| 6 |
+
if (mobileMenuButton && mobileMenu) {
|
| 7 |
+
mobileMenuButton.addEventListener('click', function() {
|
| 8 |
+
mobileMenu.classList.toggle('hidden');
|
| 9 |
+
});
|
| 10 |
+
}
|
| 11 |
+
|
| 12 |
+
// Close mobile menu when clicking outside
|
| 13 |
+
document.addEventListener('click', function(event) {
|
| 14 |
+
if (mobileMenu && !mobileMenu.contains(event.target) &&
|
| 15 |
+
mobileMenuButton && !mobileMenuButton.contains(event.target)) {
|
| 16 |
+
mobileMenu.classList.add('hidden');
|
| 17 |
+
}
|
| 18 |
+
});
|
| 19 |
+
});
|
| 20 |
+
|
| 21 |
+
// Smooth scrolling for anchor links
|
| 22 |
+
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
| 23 |
+
anchor.addEventListener('click', function (e) {
|
| 24 |
+
e.preventDefault();
|
| 25 |
+
|
| 26 |
+
const target = document.querySelector(this.getAttribute('href'));
|
| 27 |
+
if (target) {
|
| 28 |
+
window.scrollTo({
|
| 29 |
+
top: target.offsetTop - 80,
|
| 30 |
+
behavior: 'smooth'
|
| 31 |
+
});
|
| 32 |
+
}
|
| 33 |
+
});
|
| 34 |
+
});
|
| 35 |
+
|
| 36 |
+
// Feather icons initialization
|
| 37 |
+
feather.replace();
|
style.css
CHANGED
|
@@ -1,28 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
body {
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
}
|
| 5 |
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
margin-top: 0;
|
| 9 |
}
|
| 10 |
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
font-size: 15px;
|
| 14 |
-
margin-bottom: 10px;
|
| 15 |
-
margin-top: 5px;
|
| 16 |
}
|
| 17 |
|
| 18 |
-
.
|
| 19 |
-
|
| 20 |
-
margin: 0 auto;
|
| 21 |
-
padding: 16px;
|
| 22 |
-
border: 1px solid lightgray;
|
| 23 |
-
border-radius: 16px;
|
| 24 |
}
|
| 25 |
|
| 26 |
-
.
|
| 27 |
-
|
| 28 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@tailwind base;
|
| 2 |
+
@tailwind components;
|
| 3 |
+
@tailwind utilities;
|
| 4 |
+
|
| 5 |
+
:root {
|
| 6 |
+
--primary-color: #1e3a8a; /* blue-900 */
|
| 7 |
+
--secondary-color: #f59e0b; /* amber-500 */
|
| 8 |
+
--accent-color: #4f46e5; /* indigo-600 */
|
| 9 |
+
}
|
| 10 |
+
|
| 11 |
body {
|
| 12 |
+
font-family: 'Inter', sans-serif;
|
| 13 |
+
}
|
| 14 |
+
|
| 15 |
+
.font-playfair {
|
| 16 |
+
font-family: 'Playfair Display', serif;
|
| 17 |
+
}
|
| 18 |
+
|
| 19 |
+
.btn-primary {
|
| 20 |
+
@apply bg-amber-500 hover:bg-amber-600 text-white font-bold py-3 px-8 rounded-lg transition duration-300;
|
| 21 |
+
}
|
| 22 |
+
|
| 23 |
+
.btn-secondary {
|
| 24 |
+
@apply bg-transparent border-2 border-amber-500 text-amber-500 hover:bg-amber-500 hover:text-white font-bold py-3 px-8 rounded-lg transition duration-300;
|
| 25 |
+
}
|
| 26 |
+
|
| 27 |
+
.card-hover {
|
| 28 |
+
@apply bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition duration-300 border-t-4 border-amber-500;
|
| 29 |
+
}
|
| 30 |
+
|
| 31 |
+
.section-padding {
|
| 32 |
+
@apply py-20;
|
| 33 |
+
}
|
| 34 |
+
|
| 35 |
+
.bg-primary {
|
| 36 |
+
background-color: var(--primary-color);
|
| 37 |
}
|
| 38 |
|
| 39 |
+
.bg-secondary {
|
| 40 |
+
background-color: var(--secondary-color);
|
|
|
|
| 41 |
}
|
| 42 |
|
| 43 |
+
.text-primary {
|
| 44 |
+
color: var(--primary-color);
|
|
|
|
|
|
|
|
|
|
| 45 |
}
|
| 46 |
|
| 47 |
+
.text-secondary {
|
| 48 |
+
color: var(--secondary-color);
|
|
|
|
|
|
|
|
|
|
|
|
|
| 49 |
}
|
| 50 |
|
| 51 |
+
.border-primary {
|
| 52 |
+
border-color: var(--primary-color);
|
| 53 |
}
|
| 54 |
+
|
| 55 |
+
.border-secondary {
|
| 56 |
+
border-color: var(--secondary-color);
|
| 57 |
+
}
|