21 Commits

Author SHA1 Message Date
d3eb7c4a61 Update src/app/page.tsx 2026-03-05 16:19:20 +00:00
dd883b735c Update src/app/layout.tsx 2026-03-05 16:19:20 +00:00
0e05c37892 Merge version_5 into main
Merge version_5 into main
2026-03-05 16:12:39 +00:00
191ba547e7 Update src/app/page.tsx 2026-03-05 16:12:35 +00:00
a61cbbafeb Merge version_5 into main
Merge version_5 into main
2026-03-05 16:10:52 +00:00
98977f9c6b Update src/app/page.tsx 2026-03-05 16:10:47 +00:00
c55966af6e Merge version_4 into main
Merge version_4 into main
2026-03-05 16:09:14 +00:00
e79454ddd2 Update src/app/page.tsx 2026-03-05 16:09:04 +00:00
639f6b22d3 Merge version_4 into main
Merge version_4 into main
2026-03-05 16:03:34 +00:00
9f9efcffe4 Update src/app/page.tsx 2026-03-05 16:03:30 +00:00
68358aa88f Merge version_3 into main
Merge version_3 into main
2026-03-05 15:28:08 +00:00
094490d372 Update theme colors 2026-03-05 15:28:02 +00:00
5c5b46de1e Merge version_3 into main
Merge version_3 into main
2026-03-05 13:38:26 +00:00
822a9dec04 Update src/app/styles/variables.css 2026-03-05 13:38:22 +00:00
8e06006a5a Update src/app/layout.tsx 2026-03-05 13:38:21 +00:00
8fd3945599 Merge version_2 into main
Merge version_2 into main
2026-03-05 13:36:30 +00:00
f5f665f71d Update src/app/page.tsx 2026-03-05 13:36:26 +00:00
46378429fb Update src/app/layout.tsx 2026-03-05 13:36:25 +00:00
6ea90b0c46 Merge version_1 into main
Merge version_1 into main
2026-03-05 13:32:37 +00:00
ebd387370c Merge version_1 into main
Merge version_1 into main
2026-03-05 13:31:41 +00:00
d5f401b246 Merge version_1 into main
Merge version_1 into main
2026-03-05 13:30:06 +00:00
3 changed files with 34 additions and 60 deletions

View File

@@ -1,53 +1,25 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Montserrat } from "next/font/google"; import localFont from "next/font/local";
import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const montserrat = Montserrat({ const geistSans = localFont({
variable: "--font-montserrat", subsets: ["latin"], src: "./fonts/GeistVF.woff2", variable: "--font-geist-sans", weight: "100 900"});
}); const geistMono = localFont({
src: "./fonts/GeistMonoVF.woff2", variable: "--font-geist-mono", weight: "100 900"});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "RevFlow Marketing | Local Business Rankings & Growth Strategy", description: "Get your local business to Google's top #3 in 90-120 days. RevFlow Marketing offers comprehensive services: SEO, ads, web design, content creation, and AI support.", keywords: "local SEO, Google rankings, digital marketing, local business growth, web design, paid ads, content creation", metadataBase: new URL("https://revflowmarketing.com"), title: "RevFlow Marketing - Local Business Growth & SEO", description: "Get your business to Google's top #3 in 90-120 days. RevFlow Marketing offers comprehensive SEO, ads management, website development, and content creation services."};
alternates: {
canonical: "https://revflowmarketing.com"
},
openGraph: {
title: "RevFlow Marketing | Dominate Your Local Market", description: "Professional marketing agency specializing in getting local businesses to Google's top #3 rankings.", siteName: "RevFlow Marketing", type: "website", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWlyBSSo3D2vFeOGeN5xqvt1Np/a-dynamic-marketing-agency-dashboard-sho-1772717042236-4d6f35cc.png", alt: "RevFlow Marketing - Professional Marketing Solutions"
}
]
},
twitter: {
card: "summary_large_image", title: "RevFlow Marketing | Local Business Growth", description: "Get your business ranking in Google's top #3 within 90-120 days", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWlyBSSo3D2vFeOGeN5xqvt1Np/a-dynamic-marketing-agency-dashboard-sho-1772717042236-4d6f35cc.png"]
},
robots: {
index: true,
follow: true
}
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={`${geistSans.variable} ${geistMono.variable}`}>
<body {children}
className={`${montserrat.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1415,7 +1387,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -5,14 +5,14 @@ import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/Nav
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel'; import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine'; import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo'; import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
import ProductCardFour from '@/components/sections/product/ProductCardFour'; import ProductCardFour from '@/components/sections/product/ProductCardFour';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import FaqBase from '@/components/sections/faq/FaqBase'; import FaqBase from '@/components/sections/faq/FaqBase';
import ContactSplit from '@/components/sections/contact/ContactSplit'; import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterCard from '@/components/sections/footer/FooterCard'; import FooterCard from '@/components/sections/footer/FooterCard';
import { Sparkles, Zap, CheckCircle, Package, Award, Star, HelpCircle, Rocket, Linkedin, Twitter, Facebook, Mail } from 'lucide-react'; import { Sparkles, Zap, CheckCircle, Package, Award, Star, HelpCircle, Rocket, Linkedin, Twitter, Facebook, Mail, Clock } from 'lucide-react';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -118,21 +118,21 @@ export default function LandingPage() {
</div> </div>
<div id="offer" data-section="offer"> <div id="offer" data-section="offer">
<PricingCardTwo <PricingCardThree
title="Our Core Offer: The Complete Package" title="Our Core Offer: Premium Pricing Package"
description="Get your local business ranking in Google's top #3 positions within 90-120 days with our proven methodology" description="Everything you need to dominate your local market in one comprehensive package"
tag="What We Deliver" tag="What We Deliver"
tagIcon={CheckCircle} tagIcon={CheckCircle}
tagAnimation="slide-up" tagAnimation="slide-up"
plans={[ plans={[
{ {
id: "core-package", badge: "Core Growth Package", badgeIcon: Sparkles, id: "core-package", badge: "Complete Growth Solution", badgeIcon: CheckCircle,
price: "Custom Pricing", subtitle: "90-120 Day Program to Top #3", buttons: [ price: "$299/month", name: "Core Premium Package", buttons: [
{ text: "Get Started", href: "#contact" }, { text: "Get Started", href: "#contact" },
{ text: "Learn More", href: "#faq" } { text: "Learn More", href: "#faq" }
], ],
features: [ features: [
"Strategic SEO optimization for local search", "Google business profile optimization", "Comprehensive local authority building", "Paid advertising management (Google & Social)", "Professional website development", "Full-service content creation", "Monthly reporting and analytics", "Dedicated account manager" "Top #3 Google Ranking Guaranteed", "Strategic Ads Management", "Free Professional Website Development", "Content Creation with Motion Graphics", "Advanced Graphic Design", "Monthly Performance Analytics", "Dedicated Account Manager", "Conversion Optimization"
] ]
} }
]} ]}
@@ -150,7 +150,7 @@ export default function LandingPage() {
tagIcon={Package} tagIcon={Package}
tagAnimation="slide-up" tagAnimation="slide-up"
buttons={[ buttons={[
{ text: "Request Custom Quote", href: "#contact" } { text: "Request Quote", href: "#contact" }
]} ]}
buttonAnimation="blur-reveal" buttonAnimation="blur-reveal"
textboxLayout="default" textboxLayout="default"
@@ -168,7 +168,7 @@ export default function LandingPage() {
id: "support", name: "AI Customer Support (Coming Soon)", price: "Starting $300/mo", variant: "24/7 Chatbot • Lead Generation • Integration", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWlyBSSo3D2vFeOGeN5xqvt1Np/ai-customer-support-chatbot-interface-on-1772717041988-aa2e77dc.png?_wi=2", imageAlt: "AI-powered customer support" id: "support", name: "AI Customer Support (Coming Soon)", price: "Starting $300/mo", variant: "24/7 Chatbot • Lead Generation • Integration", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWlyBSSo3D2vFeOGeN5xqvt1Np/ai-customer-support-chatbot-interface-on-1772717041988-aa2e77dc.png?_wi=2", imageAlt: "AI-powered customer support"
}, },
{ {
id: "automation", name: "AI Automation (Coming Soon)", price: "Custom Pricing", variant: "Workflow • Integration • Efficiency Boost", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWlyBSSo3D2vFeOGeN5xqvt1Np/business-automation-workflow-visualizati-1772717043564-74ad84da.png?_wi=2", imageAlt: "Business automation solutions" id: "automation", name: "AI Automation (Coming Soon)", price: "Starting $1,500/month", variant: "Workflow • Integration • Efficiency Boost", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWlyBSSo3D2vFeOGeN5xqvt1Np/business-automation-workflow-visualizati-1772717043564-74ad84da.png?_wi=2", imageAlt: "Business automation solutions"
}, },
{ {
id: "management", name: "Ongoing Website Management", price: "Starting $400/mo", variant: "Updates • Maintenance • Optimization • Support", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWlyBSSo3D2vFeOGeN5xqvt1Np/professional-website-building-showcase-d-1772717043206-b8371b34.png?_wi=5", imageAlt: "Website management services" id: "management", name: "Ongoing Website Management", price: "Starting $400/mo", variant: "Updates • Maintenance • Optimization • Support", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWlyBSSo3D2vFeOGeN5xqvt1Np/professional-website-building-showcase-d-1772717043206-b8371b34.png?_wi=5", imageAlt: "Website management services"
@@ -255,7 +255,7 @@ export default function LandingPage() {
id: "1", title: "How quickly can you get my business to Google's top #3?", content: "Our proven methodology typically delivers top #3 Google rankings within 90-120 days. However, results vary based on competition level, current online presence, and your industry. We'll provide a realistic timeline during your consultation." id: "1", title: "How quickly can you get my business to Google's top #3?", content: "Our proven methodology typically delivers top #3 Google rankings within 90-120 days. However, results vary based on competition level, current online presence, and your industry. We'll provide a realistic timeline during your consultation."
}, },
{ {
id: "2", title: "What's included in the core growth package?", content: "The core package includes: Strategic SEO optimization, Google Business profile setup, local authority building, paid advertising management, professional website development, content creation, monthly analytics, and a dedicated account manager." id: "2", title: "What's included in the core package?", content: "The core package includes: Top #3 Google ranking guarantee, strategic ads management, professional website development at no extra cost, content creation with motion graphics and advanced graphic design, monthly analytics, and a dedicated account manager."
}, },
{ {
id: "3", title: "Do you offer custom pricing for different budgets?", content: "Absolutely! RevFlow Marketing works with businesses of all sizes. We offer flexible pricing packages and can customize solutions based on your specific goals and budget. Contact us for a personalized quote." id: "3", title: "Do you offer custom pricing for different budgets?", content: "Absolutely! RevFlow Marketing works with businesses of all sizes. We offer flexible pricing packages and can customize solutions based on your specific goals and budget. Contact us for a personalized quote."
@@ -274,6 +274,9 @@ export default function LandingPage() {
}, },
{ {
id: "8", title: "How do you measure success?", content: "We track multiple metrics: Google rankings, website traffic, lead generation, conversion rates, and ROI. You'll receive detailed monthly reports showing exactly how your investment is performing and the growth being achieved." id: "8", title: "How do you measure success?", content: "We track multiple metrics: Google rankings, website traffic, lead generation, conversion rates, and ROI. You'll receive detailed monthly reports showing exactly how your investment is performing and the growth being achieved."
},
{
id: "9", title: "What makes your core package the best value?", content: "At $299/month, our core package is unbeatable value because it includes the four most critical services: Top #3 Google ranking guarantee, ads management, free website development (worth $2,000+), and professional content creation with motion graphics and advanced design. You get a complete growth solution at one affordable price."
} }
]} ]}
/> />

View File

@@ -10,15 +10,15 @@
--accent: #ffffff; --accent: #ffffff;
--background-accent: #ffffff; */ --background-accent: #ffffff; */
--background: #0a1628; --background: #ffffff;
--card: #0f1f3a; --card: #f9f9f9;
--foreground: #e8f0ff; --foreground: #120006e6;
--primary-cta: #2d7bff; --primary-cta: #e63946;
--primary-cta-text: #ffffff; --primary-cta-text: #ffffff;
--secondary-cta: #0f1f3a; --secondary-cta: #f9f9f9;
--secondary-cta-text: #2d7bff; --secondary-cta-text: #120006e6;
--accent: #4a9fff; --accent: #e2e2e2;
--background-accent: #1a3a6b; --background-accent: #c4c4c4;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);