Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 094490d372 | |||
| 822a9dec04 | |||
| 8e06006a5a | |||
| 8fd3945599 | |||
| f5f665f71d | |||
| 46378429fb | |||
| 6ea90b0c46 | |||
| ebd387370c | |||
| d5f401b246 |
@@ -1,53 +1,21 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Montserrat } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
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"),
|
||||
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
|
||||
}
|
||||
title: "RevFlow Marketing | Local Business Growth & Google Rankings", description: "Get your local business to Google's top #3 in 90-120 days. SEO, paid ads, website design, and content creation."
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1415,7 +1383,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -127,7 +127,7 @@ export default function LandingPage() {
|
||||
plans={[
|
||||
{
|
||||
id: "core-package", badge: "Core Growth Package", badgeIcon: Sparkles,
|
||||
price: "Custom Pricing", subtitle: "90-120 Day Program to Top #3", buttons: [
|
||||
price: "Starting at $5,000/month", subtitle: "90-120 Day Program to Top #3", buttons: [
|
||||
{ text: "Get Started", href: "#contact" },
|
||||
{ text: "Learn More", href: "#faq" }
|
||||
],
|
||||
@@ -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: "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"
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #0a1628;
|
||||
--card: #0f1f3a;
|
||||
--foreground: #e8f0ff;
|
||||
--primary-cta: #2d7bff;
|
||||
--background: #ffffff;
|
||||
--card: #f9f9f9;
|
||||
--foreground: #120006e6;
|
||||
--primary-cta: #e63946;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #0f1f3a;
|
||||
--secondary-cta-text: #2d7bff;
|
||||
--accent: #4a9fff;
|
||||
--background-accent: #1a3a6b;
|
||||
--secondary-cta: #f9f9f9;
|
||||
--secondary-cta-text: #120006e6;
|
||||
--accent: #e2e2e2;
|
||||
--background-accent: #c4c4c4;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user