13 Commits

Author SHA1 Message Date
fdd36efa47 Update src/app/page.tsx 2026-03-05 16:26:04 +00:00
fb6ebb7043 Merge version_5 into main
Merge version_5 into main
2026-03-05 15:01:36 +00:00
e8ed915133 Update src/app/page.tsx 2026-03-05 15:01:32 +00:00
0b63d44147 Merge version_3 into main
Merge version_3 into main
2026-03-05 13:55:34 +00:00
f851677748 Update src/app/page.tsx 2026-03-05 13:55:30 +00:00
7b1b01bb9f Update src/app/layout.tsx 2026-03-05 13:55:30 +00:00
5ac37cacd1 Merge version_2 into main
Merge version_2 into main
2026-03-05 13:41:16 +00:00
64010173e8 Update src/app/page.tsx 2026-03-05 13:41:12 +00:00
42a02998c4 Update src/app/layout.tsx 2026-03-05 13:41:11 +00:00
2fc7334ac6 Merge version_1 into main
Merge version_1 into main
2026-03-05 13:39:33 +00:00
3fd0edbff7 Merge version_1 into main
Merge version_1 into main
2026-03-05 13:13:49 +00:00
b1be85db0f Merge version_1 into main
Merge version_1 into main
2026-03-05 13:12:59 +00:00
7a167049f1 Merge version_1 into main
Merge version_1 into main
2026-03-05 13:11:36 +00:00
2 changed files with 14 additions and 39 deletions

View File

@@ -1,42 +1,17 @@
import type { Metadata } from "next";
import { DM_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
import "@/styles/globals.css";
export const metadata: Metadata = {
title: "RevFlow | Guaranteed Top #3 Local SEO in 90 Days", description: "RevFlow guarantees your local business reaches top #3 Google rankings within 90-120 days. Results-driven local SEO agency with proven track record.", keywords: "local SEO, Google rankings, local business marketing, guaranteed SEO, top 3 rankings", metadataBase: new URL("https://revflow.io"),
alternates: {
canonical: "https://revflow.io"},
openGraph: {
title: "RevFlow | Guaranteed Top #3 Local Rankings", description: "Get your local business to top #3 on Google in 90-120 days. Guaranteed results or we work for free.", url: "https://revflow.io", siteName: "RevFlow", type: "website"},
twitter: {
card: "summary_large_image", title: "RevFlow | Guaranteed Local SEO Results", description: "Top #3 Google rankings guaranteed in 90 days for local businesses"},
};
title: "RevFlow - Guaranteed Top 3 Local Rankings", description: "RevFlow guarantees your business reaches the top #3 rankings on Google Local Search within 90-120 days. The only local SEO agency that puts results first with a proven track record."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${dmSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1404,7 +1379,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -10,7 +10,7 @@ import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCa
import FaqDouble from '@/components/sections/faq/FaqDouble';
import ContactText from '@/components/sections/contact/ContactText';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import { Award, MapPin, TrendingUp, Users, Zap, Sparkles } from 'lucide-react';
import { Award, MapPin, TrendingUp, Users, Zap, Sparkles, Shield } from 'lucide-react';
export default function LandingPage() {
return (
@@ -42,9 +42,10 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroBillboard
title="Dominate Local Search in 90-120 Days"
description="RevFlow guarantees your business reaches the top #3 rankings on Google Local Search. We're the only local SEO agency that puts results first with a proven track record."
tag="Guaranteed Results"
tagIcon={Zap}
description="RevFlow guarantees your business reaches the top #3 rankings on Google Local Search with our 100% success rate. We're the only local SEO agency that puts results first with a proven track record that never fails."
tag="Guaranteed Results • 100% Success Rate"
tagIcon={Shield}
tagAnimation="slide-up"
background={{ variant: "sparkles-gradient" }}
buttons={[
{ text: "Get Your Free Audit", href: "contact" },
@@ -205,7 +206,7 @@ export default function LandingPage() {
animationType="entrance-slide"
background={{ variant: "sparkles-gradient" }}
buttons={[
{ text: "Claim Your Free Audit", href: "#" },
{ text: "Get Your Free SEO Audit", href: "#" },
{ text: "Schedule Strategy Call", href: "#" }
]}
useInvertedBackground={false}
@@ -254,4 +255,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}