Files
697b6d25-b91e-4aa0-a0bd-b49…/src/app/industries/page.tsx

113 lines
3.8 KiB
TypeScript

"use client";
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import HeroBillboard from "@/components/sections/hero/HeroBillboard";
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import { Zap } from "lucide-react";
export default function IndustriesPage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "How It Works", id: "/how-it-works" },
{ name: "Services", id: "/services" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" },
];
const footerColumns = [
{
title: "Product", items: [
{ label: "Features", href: "#" },
{ label: "Pricing", href: "/pricing" },
{ label: "Security", href: "#" },
{ label: "Roadmap", href: "#" },
],
},
{
title: "Company", items: [
{ label: "About", href: "/about" },
{ label: "Blog", href: "#" },
{ label: "Contact", href: "/contact" },
{ label: "Careers", href: "#" },
],
},
{
title: "Industries", items: [
{ label: "Dental Practices", href: "/industries" },
{ label: "Salons & Spas", href: "/industries" },
{ label: "Restaurants", href: "/industries" },
{ label: "Real Estate", href: "/industries" },
],
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Cookie Policy", href: "#" },
],
},
];
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="mediumSmall"
sizing="mediumLarge"
background="blurBottom"
cardStyle="gradient-bordered"
primaryButtonStyle="flat"
secondaryButtonStyle="radial-glow"
headingFontWeight="light"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Romèra"
navItems={navItems}
button={{ text: "Book a Demo", href: "/contact" }}
animateOnLoad={true}
/>
</div>
<div id="hero" data-section="hero">
<HeroBillboard
title="Industries We Serve"
description="Romèra specializes in appointment-based businesses across multiple industries. Our AI automation is built specifically for local service providers."
background={{ variant: "sparkles-gradient" }}
tag="Industry Solutions"
tagIcon={Zap}
tagAnimation="slide-up"
buttons={[{ text: "Book a Demo", href: "/contact" }]}
buttonAnimation="slide-up"
mediaAnimation="none"
/>
</div>
<div id="industries" data-section="industries">
<SocialProofOne
title="Industries We Serve"
description="We specialize in appointment-based businesses. Our AI automation is built for local service industries."
textboxLayout="default"
useInvertedBackground={false}
names={[
"Dental Clinics", "Medical Practices", "Barbershops", "Hair Salons", "Restaurants", "Real Estate Offices", "Fitness Studios", "Legal Offices"]}
showCard={true}
speed={35}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={footerColumns}
bottomLeftText="© 2025 Romèra - Digital Strategy & Automation. All rights reserved."
bottomRightText="Powering local businesses with AI."
/>
</div>
</ThemeProvider>
);
}