Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 52a958d24e | |||
| e9ebe6dda4 | |||
| acd6e28f18 | |||
| d5b5dcca36 | |||
| 5b22c8ddb0 | |||
| 8abb1cf57b | |||
| dde885d54f | |||
| 26daff2ca7 | |||
| 51c02c4d9a | |||
| 3ae9c9a7d6 | |||
| 94607db51b | |||
| 0dd847e3b3 | |||
| c95cd8626f |
@@ -50,12 +50,12 @@ export default function AboutPage() {
|
|||||||
{
|
{
|
||||||
id: "g1", groupTitle: "Founder", members: [
|
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, "
|
id: "m1", title: "Tyler Wong", 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"
|
title="Who We Are "
|
||||||
description="We are a small, focused agency where you get direct access to the experts doing the work."
|
description="We are a small, focused agency where you get direct access to the experts doing the work."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -26,21 +26,13 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "/"},
|
||||||
id: "/",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Services",
|
name: "Services", id: "/services"},
|
||||||
id: "/services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "About",
|
name: "About", id: "/about"},
|
||||||
id: "/about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Contact", id: "/contact"},
|
||||||
id: "/contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Local Rank Experts"
|
brandName="Local Rank Experts"
|
||||||
/>
|
/>
|
||||||
@@ -50,16 +42,13 @@ export default function LandingPage() {
|
|||||||
<ContactCTA
|
<ContactCTA
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{
|
||||||
variant: "plain",
|
variant: "plain"}}
|
||||||
}}
|
|
||||||
tag="Let's Talk"
|
tag="Let's Talk"
|
||||||
title="Book Your Free GBP Audit"
|
title="Book Your Free GBP Audit"
|
||||||
description="Fill out the form below or contact us directly. We respond within 24 hours."
|
description="Fill out the form below or contact us directly. We respond within 24 hours."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Book My Free Audit",
|
text: "Book My Free Audit", href: "https://calendly.com/tyler-localrankexperts/30min"},
|
||||||
href: "/contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -77,37 +66,23 @@ export default function LandingPage() {
|
|||||||
logoText="Local Rank Experts"
|
logoText="Local Rank Experts"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Navigation",
|
title: "Navigation", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Home",
|
label: "Home", href: "/"},
|
||||||
href: "/",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Services",
|
label: "Services", href: "/services"},
|
||||||
href: "/services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "About",
|
label: "About", href: "/about"},
|
||||||
href: "/about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Contact",
|
label: "Contact", href: "/contact"},
|
||||||
href: "/contact",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Contact",
|
title: "Contact", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "tyler@localrankexperts.ca",
|
label: "tyler@localrankexperts.ca", href: "mailto:tyler@localrankexperts.ca"},
|
||||||
href: "mailto:tyler@localrankexperts.ca",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "localrankexperts.ca",
|
label: "localrankexperts.ca", href: "https://localrankexperts.ca"},
|
||||||
href: "https://localrankexperts.ca",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
@@ -116,4 +91,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -6,10 +6,8 @@ import ContactCTA from '@/components/sections/contact/ContactCTA';
|
|||||||
import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
|
import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
|
||||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||||
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
||||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
|
||||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||||
import TextAbout from '@/components/sections/about/TextAbout';
|
import TextAbout from '@/components/sections/about/TextAbout';
|
||||||
import { LineChart, MapPin, Target } from "lucide-react";
|
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -45,7 +43,7 @@ export default function LandingPage() {
|
|||||||
title="Calgary's Local SEO Specialists."
|
title="Calgary's Local SEO Specialists."
|
||||||
description="More calls. More customers. All from Google Maps. "
|
description="More calls. More customers. All from Google Maps. "
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Book Your Free GBP Audit", href: "/contact" },
|
{ text: "Book Your Free GBP Audit", href: "https://calendly.com/tyler-localrankexperts/30min" },
|
||||||
]}
|
]}
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CVsKYOORG1QTC0iM3LA3BfvJY3/uploaded-1776697582356-a1c5dns3.png"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CVsKYOORG1QTC0iM3LA3BfvJY3/uploaded-1776697582356-a1c5dns3.png"
|
||||||
imageAlt="Professional, minimalist illustration representing local search and map optimization"
|
imageAlt="Professional, minimalist illustration representing local search and map optimization"
|
||||||
@@ -92,22 +90,6 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="why-us" data-section="why-us">
|
|
||||||
<MetricCardOne
|
|
||||||
animationType="slide-up"
|
|
||||||
textboxLayout="default"
|
|
||||||
gridVariant="uniform-all-items-equal"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
metrics={[
|
|
||||||
{ id: "m1", value: "100%", title: "Calgary-focused", description: "We only work with businesses in the YYC region.", icon: MapPin },
|
|
||||||
{ id: "m2", value: "Local SEO", title: "Specialists", description: "No generalist marketing - just local maps.", icon: Target },
|
|
||||||
{ id: "m3", value: "Live", title: "Transparency", description: "You see exactly where you rank daily.", icon: LineChart },
|
|
||||||
]}
|
|
||||||
title="Why Local Rank Experts"
|
|
||||||
description="We are Calgary's local SEO specialists."
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="cta-banner" data-section="cta-banner">
|
<div id="cta-banner" data-section="cta-banner">
|
||||||
<ContactCTA
|
<ContactCTA
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -116,7 +98,7 @@ export default function LandingPage() {
|
|||||||
title="Not sure where you stand on Google Maps?"
|
title="Not sure where you stand on Google Maps?"
|
||||||
description="Find out for free with a comprehensive GBP audit."
|
description="Find out for free with a comprehensive GBP audit."
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Book Your Free GBP Audit", href: "/contact" },
|
{ text: "Book Your Free GBP Audit", href: "https://calendly.com/tyler-localrankexperts/30min" },
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -147,4 +129,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -77,7 +77,7 @@ export default function LandingPage() {
|
|||||||
subtitle: "GBP Setup",
|
subtitle: "GBP Setup",
|
||||||
features: [
|
features: [
|
||||||
"New profile setup",
|
"New profile setup",
|
||||||
"Google verification guidance",
|
"Verification Support",
|
||||||
"Category alignment",
|
"Category alignment",
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
@@ -89,12 +89,12 @@ export default function LandingPage() {
|
|||||||
features: [
|
features: [
|
||||||
"Weekly posts",
|
"Weekly posts",
|
||||||
"Review management",
|
"Review management",
|
||||||
"Monthly reports",
|
"Monthly Geo-Grid Reports",
|
||||||
"Rank tracking",
|
"Rank tracking",
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
title="Our Services"
|
title="Simple, Transparent Pricing "
|
||||||
description="Professional local SEO pricing packages for home service businesses."
|
description="Professional local SEO pricing packages for home service businesses."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user