Merge version_1 into main #2

Merged
bender merged 1 commits from version_1 into main 2026-04-20 14:55:15 +00:00

View File

@@ -7,7 +7,7 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
import TextAbout from '@/components/sections/about/TextAbout';
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
@@ -22,106 +22,67 @@ export default function LandingPage() {
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="Local Rank Experts"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Local Rank Experts"
/>
</div>
<div id="about-text" data-section="about-text">
<TextAbout
useInvertedBackground={false}
title="Local Rank Experts is a Calgary-based agency focused exclusively on Google Business Profile and local search. Founded by a former pro hockey player, we operate on discipline, detail, and data-driven results. No fluff, just rankings."
/>
</div>
<div id="about-text" data-section="about-text">
<TextAbout
useInvertedBackground={false}
title="Local Rank Experts is a Calgary-based agency focused exclusively on Google Business Profile and local search. Founded by a former pro hockey player, we operate on discipline, detail, and data-driven results. No fluff, just rankings."
/>
</div>
<div id="about-team" data-section="about-team">
<TeamCardEleven
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
groups={[
{
id: "g1",
groupTitle: "Founder",
members: [
{
id: "m1",
title: "Tyler",
subtitle: "Founder",
detail: "Former pro athlete turned SEO specialist, hyper-focused on Calgary local search growth.",
},
],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CVsKYOORG1QTC0iM3LA3BfvJY3/icon-of-a-business-profile-dashboard-con-1776696811248-88e16e87.png",
imageAlt: "Icon of a business profile dashboard construction tool. Clean professional vector icon, minimalist, ",
},
]}
title="Our Philosophy"
description="We are a small, focused agency where you get direct access to the experts doing the work."
/>
</div>
<div id="about-team" data-section="about-team">
<TeamCardEleven
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
groups={[
{
id: "g1", groupTitle: "Founder", members: [
{
id: "m1", title: "Tyler", subtitle: "Founder", detail: "Former pro athlete turned SEO specialist, hyper-focused on Calgary local search growth.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CVsKYOORG1QTC0iM3LA3BfvJY3/icon-of-a-business-profile-dashboard-con-1776696811248-88e16e87.png", imageAlt: "Icon of a business profile dashboard construction tool. Clean professional vector icon, minimalist, "
},
],
},
]}
title="Our Philosophy"
description="We are a small, focused agency where you get direct access to the experts doing the work."
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CVsKYOORG1QTC0iM3LA3BfvJY3/clean-modern-abstract-background-with-te-1776696827623-ef39d5b1.png?_wi=3"
logoText="Local Rank Experts"
columns={[
{
title: "Navigation",
items: [
{
label: "Home",
href: "/",
},
{
label: "Services",
href: "/services",
},
{
label: "About",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
title: "Contact",
items: [
{
label: "tyler@localrankexperts.ca",
href: "mailto:tyler@localrankexperts.ca",
},
{
label: "localrankexperts.ca",
href: "https://localrankexperts.ca",
},
],
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CVsKYOORG1QTC0iM3LA3BfvJY3/clean-modern-abstract-background-with-te-1776696827623-ef39d5b1.png"
logoText="Local Rank Experts"
columns={[
{
title: "Navigation", items: [
{ label: "Home", href: "/" },
{ label: "Services", href: "/services" },
{ label: "About", href: "/about" },
{ label: "Contact", href: "/contact" },
],
},
{
title: "Contact", items: [
{ label: "tyler@localrankexperts.ca", href: "mailto:tyler@localrankexperts.ca" },
{ label: "localrankexperts.ca", href: "https://localrankexperts.ca" },
],
},
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}