5 Commits

Author SHA1 Message Date
15c2325fcc Merge version_3 into main
Merge version_3 into main
2026-05-20 16:48:21 +00:00
31bb76be0b Update src/app/page.tsx 2026-05-20 16:48:14 +00:00
46a3e20693 Merge version_2 into main
Merge version_2 into main
2026-05-20 16:46:32 +00:00
9a99d4698c Update src/app/page.tsx 2026-05-20 16:46:26 +00:00
b5fd623da9 Merge version_1 into main
Merge version_1 into main
2026-05-20 16:40:21 +00:00

View File

@@ -12,7 +12,7 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import TextAbout from '@/components/sections/about/TextAbout';
import { Award, Calendar, Mail, MapPin, Smile, Users } from "lucide-react";
import { Award, Calendar, Mail, MapPin, Smile, Users, Zap } from "lucide-react";
export default function LandingPage() {
return (
@@ -86,6 +86,9 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={true}
tag="Zero Long-term Commitment"
tagIcon={Zap}
tagAnimation="slide-up"
features={[
{ icon: MapPin, title: "Prestigious Address", description: "Put your business on the map in Recife's prime business district." },
{ icon: Mail, title: "Mail Handling", description: "Secure receiving and management of all your business correspondence." },
@@ -166,23 +169,23 @@ export default function LandingPage() {
<FooterSimple
columns={[
{
title: "Company", items: [
{ label: "About Us", href: "#about" },
{ label: "Careers", href: "#" }
title: "Empresa", items: [
{ label: "Sobre Nós", href: "#about" },
{ label: "Carreiras", href: "#" }
]
},
{
title: "Support", items: [
{ label: "Contact", href: "#contact" },
{ label: "Help Center", href: "#" }
title: "Suporte", items: [
{ label: "Contato", href: "#contact" },
{ label: "Central de Ajuda", href: "#" }
]
}
]}
bottomLeftText="© 2024 Moderna Office Recife"
bottomRightText="Privacy Policy"
bottomRightText="Política de Privacidade"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}