Write a compelling headline that works without a lede



Section heading
Accent heading
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.



Feature heading
This is just placeholder text. Don’t be alarmed, this is just here to fill up space since your finalized copy isn’t ready yet. We'll replace it soon.
Feature heading
This is just placeholder text. Don’t be alarmed, this is just here to fill up space since your finalized copy isn’t ready yet. We'll replace it soon.
Feature heading
This is just placeholder text. Don’t be alarmed, this is just here to fill up space since your finalized copy isn’t ready yet. We'll replace it soon.
Feature heading
This is just placeholder text. Don’t be alarmed, this is just here to fill up space since your finalized copy isn’t ready yet. We'll replace it soon.
Feature heading
This is just placeholder text. Don’t be alarmed, this is just here to fill up space since your finalized copy isn’t ready yet. We'll replace it soon.
Feature heading
This is just placeholder text. Don’t be alarmed, this is just here to fill up space since your finalized copy isn’t ready yet. We'll replace it soon.
- [ud_review_star_rating]
After a life altering event, with emotions at the highest level, both Tim and Michele were the anchor to get our family through this fraught time. I would highly recommend both for not only their professional excellence but their commitment and compassion.
- [ud_review_star_rating]
McKenzie and Scott team of lawyers demonstrate exceptional legal knowledge in civil rights, and systemic injustices. Their attorneys are known for diligent research, strong courtroom presence, and securing favorable outcomes for marginalized communities.
- [ud_review_star_rating]
My brother was shot and killed by National City police officers while suffering from a mental health crisis. As a result of many circumstances, no one was interested in taking my case since I’m going up against a municipality with unlimited funding. However, the McKenzie Scott law firm in partnership with attorney Emily Howe. My case was taken on by them who believe in “Fighting for the Little Guy” and won the largest police wrongful death settlement in National City, $1 million. I’m extremely grateful to have them represent me and fight for justice.
- [ud_review_star_rating]
Tina and Michelle provided noteworthy legal representation characterized by efficiency, compassion and expertise. I highly recommend McKenzie Scott!
- [ud_review_star_rating]
Tim & Marcus & their staff are a top notch team. My son was facing a possible sentence of a minimum of three to five years in prison. Due to the exhaustive preparation done by Tim Scott, my son was given three years probation. On numerous occasions over the course of the trial, Tim showed compassion towards my son and our family. He has an amazing moral compass. I will be eternally grateful to Tim for all he has done for my son.
- [ud_review_star_rating]
I had an outstanding experience with McKenzie Scott Law Firm. From start to finish, the team demonstrated professionalism, compassion, and integrity. I want to give a special shoutout to Michele McKenzie, whose leadership and dedication shine through in every interaction, and to Nicolas Jimenez, who worked on my case with care and attention to detail. These are not only great professionals but genuinely good people. I’m grateful for their support and highly recommend this firm to anyone in need of legal representation.
- [ud_review_star_rating]
Tim Scott is amazing! My dear friend was facing a long sentence for a federal criminal offense brought on by his addictions. He showed through treatment that he was remorseful, and because Tim and his team truly care and are highly competent, his defense ended with him being given probation. He continues to be a contributing citizen and only due to the excellent defense McKenzie Scott provided.
- [ud_review_star_rating]
Tim Scott and his team are the most kind and dedicated lawyers I have ever met. They fought for my partner when others didn’t. They believed in my partner when others didn’t. They were able to prove that with hard work and dedication the truth does win and justice was done. This team has become an important part of our family and of our history. I can’t say enough about how much they truly mean to us. And how much their work is appreciated. I owe them forever my gratitude. If you want a lawyer that really cares and you know will fight for you, this is the team you should hire.
- [ud_review_star_rating]
They are hard fighters who aspire to achieve what’s best for you and your party. They’re easy to conversate with and will gladly break down all parts of certain deals or gameplans for the case.
- [ud_review_star_rating]
I would like to thank the hole team of McKenzie Scott for doing great job on representing my husband Raul C in court especially Michael Angeles thanks again for your hard work thank you for giving me my freedom God bless you always
Cards & Icons
Light Cards
dark cards
<!-- Activate & Sign -->console.log('Script is starting');
document.addEventListener('DOMContentLoaded', function() {
console.log('DOM is fully loaded');
const iconGroups = document.querySelectorAll('[data-ui-icon-group]');
console.log(`Found ${iconGroups.length} icon groups`);
iconGroups.forEach((group, index) => {
console.log(`Processing group ${index + 1}`);
const label = group.querySelector('[data-ui-icon-row-label]');
const row = group.querySelector('[data-ui-icon-row]');
const icon = row?.querySelector('[data-icon]');
console.log(`Group ${index + 1}: Label found: ${!!label}, Row found: ${!!row}, Icon found: ${!!icon}`);
if (icon && label) {
const computedStyle = window.getComputedStyle(icon);
const iconSize = computedStyle.getPropertyValue('--icon-size');
console.log(`Group ${index + 1}: Icon size from CSS: ${iconSize || 'not found'}`);
if (iconSize) {
console.log(`Group ${index + 1}: Appending size to label`);
label.textContent += ` (${iconSize})`;
} else {
console.log(`Group ${index + 1}: Icon size not found, skipping label update`);
}
} else {
console.log(`Group ${index + 1}: Missing icon or label, skipping`);
}
});
console.log('Script execution completed');
});Brand Palette
Colors
The following colors and shades are available for this project.
Primary
Secondary
Tertiary
Accent
Base
Neutral
<!-- Activate me and sign me -->document.addEventListener('DOMContentLoaded', function() {
const colorElements = document.querySelectorAll('[data-color]');
colorElements.forEach(element => {
const bgValue = getComputedStyle(element).getPropertyValue('--bg').trim();
const contentWrapper = element.querySelector('[class*="__content-wrapper"]');
if (!bgValue || bgValue === 'undefined') {
element.style.display = 'none';
return;
}
if (contentWrapper) {
const color = new Color(bgValue);
const hexValue = color.hex();
const rgbValue = color.rgb().string();
const hslValue = color.hsl().string();
const colorInfo = document.createElement('div');
colorInfo.innerHTML = `
<p>Hex: ${hexValue}</p>
<p>RGB: ${rgbValue}</p>
<p>HSL: ${hslValue}</p>
`;
contentWrapper.appendChild(colorInfo);
}
});
});
// Simple Color conversion class
class Color {
constructor(color) {
this.color = color;
}
hex() {
const rgb = this.rgb().array();
return '#' + rgb.map(x => {
const hex = x.toString(16);
return hex.length === 1 ? '0' + hex : hex;
}).join('');
}
rgb() {
const div = document.createElement('div');
div.style.color = this.color;
document.body.appendChild(div);
const rgb = window.getComputedStyle(div).color.match(/\d+/g).map(Number);
document.body.removeChild(div);
return {
array: () => rgb,
string: () => `rgb(${rgb.join(', ')})`
};
}
hsl() {
const rgb = this.rgb().array();
const r = rgb[0] / 255;
const g = rgb[1] / 255;
const b = rgb[2] / 255;
const max = Math.max(r, g, b);
const min = Math.min(r, g, b);
let h, s, l = (max + min) / 2;
if (max === min) {
h = s = 0;
} else {
const d = max - min;
s = l > 0.5 ? d / (2 - max - min) : d / (max + min);
switch (max) {
case r: h = (g - b) / d + (g < b ? 6 : 0); break;
case g: h = (b - r) / d + 2; break;
case b: h = (r - g) / d + 4; break;
}
h /= 6;
}
return {
array: () => [Math.round(h * 360), Math.round(s * 100), Math.round(l * 100)],
string: () => `hsl(${Math.round(h * 360)}, ${Math.round(s * 100)}%, ${Math.round(l * 100)}%)`
};
}
}I am a heading

