Merge version_1 into main #1

Merged
bender merged 1 commits from version_1 into main 2026-05-23 21:30:42 +00:00

View File

@@ -11,7 +11,7 @@ export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="reveal-blur"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="smallMedium"
sizing="largeSizeMediumTitles"
@@ -26,21 +26,13 @@ export default function LandingPage() {
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "About",
id: "/about",
},
name: "About", id: "/about"},
{
name: "Services",
id: "/services",
},
name: "Services", id: "/services"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
brandName="All Stars Roofing Inc."
/>
@@ -50,9 +42,9 @@ export default function LandingPage() {
<ContactText
useInvertedBackground={false}
background={{
variant: "plain",
}}
variant: "plain"}}
text="Tell us about your roofing project and we'll be in touch."
animationType="entrance-slide"
/>
</div>
@@ -64,12 +56,10 @@ export default function LandingPage() {
author="Mark Henderson"
avatars={[
{
src: "http://img.b2bpic.net/free-photo/expressive-senior-female-posing-indoor_344912-1396.jpg",
alt: "Client",
},
src: "http://img.b2bpic.net/free-photo/expressive-senior-female-posing-indoor_344912-1396.jpg", alt: "Client"},
]}
ratingAnimation="reveal-blur"
avatarsAnimation="reveal-blur"
ratingAnimation="slide-up"
avatarsAnimation="slide-up"
/>
</div>
@@ -77,42 +67,27 @@ export default function LandingPage() {
<FooterBase
columns={[
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About",
href: "/about",
},
label: "About", href: "/about"},
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
],
},
{
title: "Services",
items: [
title: "Services", items: [
{
label: "Replacement",
href: "/services",
},
label: "Replacement", href: "/services"},
{
label: "Repair",
href: "/services",
},
label: "Repair", href: "/services"},
],
},
{
title: "Resources",
items: [
title: "Resources", items: [
{
label: "Blog",
href: "/blog",
},
label: "Blog", href: "/blog"},
{
label: "Reviews",
href: "/reviews",
},
label: "Reviews", href: "/reviews"},
],
},
]}