2 Commits

Author SHA1 Message Date
65d41775a6 Bob AI: Revert back to previous version 2026-02-04 08:56:01 +00:00
073f923e6e Update src/app/page.tsx 2026-02-04 08:38:12 +00:00
2 changed files with 7 additions and 22 deletions

View File

@@ -1,6 +1,6 @@
"use client"
import { Clapperboard, Film, Sparkles, Camera, Image, Star, TrendingUp } from "lucide-react";
import { Clapperboard, Film, Sparkles, Camera, Image, Star, TrendingUp, DollarSign, Clock } from "lucide-react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
@@ -43,14 +43,14 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroSplitDualMedia
title="Cinematic Excellence for Luxury Real Estate"
description="Revv Productions specializes in stunning video content that showcases high-end properties in their best light. From aerial drone work to 4K interior cinematography, we capture the essence of luxury homes."
title="Professional Cinematography Delivers 40% Faster Sales for Luxury Real Estate"
description="Revv Productions creates cinematic property videos that help luxury real estate agents close deals 40% faster and command 15% higher listing prices. Our 4K drone footage and interior cinematography turns properties into must-see experiences that generate qualified leads within 48 hours."
tag="Premium Video Production"
tagIcon={Clapperboard}
tagIcon={DollarSign}
background={{ variant: "plain" }}
buttons={[
{ text: "View Our Portfolio", href: "#portfolio" },
{ text: "Get a Quote", href: "#contact" }
{ text: "View ROI Portfolio", href: "#portfolio" },
{ text: "Get Fast Quote", href: "#contact" }
]}
mediaItems={[
{
@@ -61,7 +61,7 @@ export default function LandingPage() {
}
]}
rating={5}
ratingText="Trusted by Top Real Estate Agents"
ratingText="Proven ROI by Top-Selling Agents"
/>
</div>

View File

@@ -151,21 +151,6 @@ const HeroSplitDualMedia = ({
buttonTextClassName={cls("text-base", buttonTextClassName)}
center={true}
/>
<TextBox
title={title}
description={description}
tag={tag}
tagIcon={tagIcon}
buttons={buttons}
className={cls("hidden md:flex flex-col gap-3 md:gap-4", textBoxClassName)}
titleClassName={cls("text-7xl 2xl:text-8xl font-medium text-center md:text-left text-balance", titleClassName)}
descriptionClassName={cls("max-w-8/10 text-lg md:text-xl leading-[1.2] text-center md:text-left", descriptionClassName)}
tagClassName={cls("w-fit px-3 py-1 text-sm rounded-theme card text-foreground inline-flex items-center gap-2 mb-3", tagClassName)}
buttonContainerClassName={cls("flex flex-wrap gap-4 mt-2", buttonContainerClassName)}
buttonClassName={buttonClassName}
buttonTextClassName={cls("text-base", buttonTextClassName)}
center={false}
/>
{ratingElement}
</div>