Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-06-03 22:49:37 +00:00

View File

@@ -2,10 +2,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText';
import FaqBase from '@/components/sections/faq/FaqBase';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
@@ -13,7 +13,7 @@ import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import { BarChart, Building, Cloud, Crown, LifeBuoy, Sparkles, Users } from "lucide-react";
import { BarChart, Building, Cloud, Crown, LifeBuoy, Sparkles, Users, Award, Zap, HelpCircle } from "lucide-react";
export default function LandingPage() {
return (
@@ -226,55 +226,97 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
names={[
"Global Dynamics", "Tech Innovators Inc.", "Summit Financial", "Evolve Solutions", "Pioneer Group", "Apex Ventures", "Synergy Corp."]}
title="Trusted by Industry Leaders"
description="Sentino partners with top companies to deliver exceptional results and drive forward innovation."
"ISO 27001 Certified", "GDPR Compliant", "SOC 2 Type II", "Forbes 500 Partner", "TechCrunch Recognized", "Inc. 5000 Honoree", "Business Insider Featured"]}
title="Certified Excellence & Industry Recognition"
description="Our commitment to security, quality, and innovation is validated by top industry certifications and widespread recognition from leading publications and partners."
tag="Built on Trust"
tagIcon={Award}
buttons={[{text: "View Certifications", href: "#"}, {text: "Read Client Reviews", href: "#testimonials"}]}
/>
</div>
<div id="faq" data-section="faq">
<FaqBase
<FaqSplitMedia
textboxLayout="default"
useInvertedBackground={true}
faqs={[
{
id: "faq-1", title: "What kind of businesses does Sentino work with?", content: "Sentino partners with businesses of all sizes, from startups to large enterprises, across various industries. Our solutions are tailored to meet diverse business needs."},
id: "faq-1", title: "Is Sentino suitable for small businesses?", content: "Absolutely! Sentino offers scalable solutions designed to grow with your business, from startups to large enterprises. We tailor our services to meet your specific needs and budget."
},
{
id: "faq-2", title: "How long does it take to see results?", content: "The timeline for seeing results can vary depending on the service and the complexity of your business. We focus on sustainable growth, and our team will provide a realistic projection during the consultation phase."},
id: "faq-2", title: "What if I need ongoing support after implementation?", content: "Our partnership doesn't end after implementation. We provide comprehensive ongoing support and account management to ensure your continued success and adapt to evolving business needs."
},
{
id: "faq-3", title: "Do you offer custom solutions?", content: "Yes, we specialize in creating bespoke solutions designed to address your specific challenges and goals. Our approach is highly customizable to ensure maximum impact for your business."},
id: "faq-3", title: "How does Sentino ensure data security and privacy?", content: "Data security is paramount. We adhere to the highest industry standards, including ISO 27001 and GDPR compliance, utilizing advanced encryption and robust privacy controls to protect your information."
},
{
id: "faq-4", title: "Can Sentino integrate with my existing systems?", content: "Yes, our solutions are designed for seamless integration with a wide range of existing systems and platforms. Our technical team will work closely with you to ensure smooth data flow and operational continuity."
}
]}
title="Frequently Asked Questions"
description="Find quick answers to the most common questions about Sentino's services and how we operate."
title="Your Questions, Answered: Building Confidence in Our Solutions"
description="We believe in full transparency. Find comprehensive answers to common questions, addressing potential concerns and highlighting the value Sentino brings to your business."
faqsAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-business-people-office_23-2149323146.jpg"
imageAlt="Two business people discussing a document in an office"
mediaPosition="right"
tag="Common Objections"
tagIcon={HelpCircle}
/>
</div>
<div id="contact" data-section="contact">
<ContactText
<ContactCTA
useInvertedBackground={false}
background={{
variant: "radial-gradient"}}
text="Ready to transform your business? Contact Sentino today to discuss your goals and how we can help you achieve them."
tag="Ready for Growth?"
tagIcon={Zap}
title="Unlock Your Business Potential Today"
description="Connect with our experts for a personalized consultation and discover how Sentino can drive your success. Let's build your future, together."
buttons={[
{
text: "Get in Touch", href: "mailto:info@sentino.com"},
text: "Schedule a Call", href: "#"},
{
text: "Get a Free Quote", href: "#"},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
<FooterBaseCard
logoSrc="http://img.b2bpic.net/free-psd/sustainability-template-design_23-2151916740.jpg"
logoAlt="Sentino Footer Logo"
logoText="Sentino"
leftLink={{
text: "Privacy Policy", href: "#"}}
rightLink={{
text: "Terms of Service", href: "#"}}
columns={[
{
title: "Solutions", items: [
{ label: "Strategic Consulting", href: "#solutions" },
{ label: "Digital Marketing", href: "#solutions" },
{ label: "Software Development", href: "#solutions" },
{ label: "Financial Advisory", href: "#solutions" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "#about" },
{ label: "Testimonials", href: "#testimonials" },
{ label: "Careers", href: "#" },
{ label: "Contact Us", href: "#contact" }
]
},
{
title: "Resources", items: [
{ label: "FAQ", href: "#faq" },
{ label: "Blog", href: "#" },
{ label: "Support", href: "#" },
{ label: "Privacy Policy", href: "#" }
]
}
]}
copyrightText="© 2024 Sentino. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}