Update src/app/contact/page.tsx

This commit is contained in:
2026-03-10 16:12:52 +00:00
parent 8a22b04ab8
commit a610bc4db2

View File

@@ -1,9 +1,9 @@
"use client";
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import ContactText from "@/components/sections/contact/ContactText";
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import FooterSimple from "@/components/sections/footer/FooterSimple";
@@ -16,24 +16,21 @@ export default function ContactPage() {
{ name: "Contact", id: "contact" },
];
const navButton = {
text: "See Your 10-Minute Setup", href: "#contact"};
const footerColumns = [
{
title: "Product", items: [
{ label: "Features", href: "#features" },
{ label: "Pricing", href: "#pricing" },
{ label: "Features", href: "/#features" },
{ label: "Pricing", href: "/pricing" },
{ label: "Security", href: "#" },
{ label: "Roadmap", href: "#" },
],
},
{
title: "Company", items: [
{ label: "About", href: "/about" },
{ label: "About", href: "#" },
{ label: "Blog", href: "#" },
{ label: "Careers", href: "#" },
{ label: "Contact", href: "#contact" },
{ label: "Contact", href: "/contact" },
],
},
{
@@ -69,9 +66,11 @@ export default function ContactPage() {
>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={navItems}
button={navButton}
brandName="OpenFlow AI"
navItems={navItems}
button={{
text: "See Your 10-Minute Setup", href: "/contact"
}}
/>
</div>
@@ -79,13 +78,46 @@ export default function ContactPage() {
<ContactText
text="Ready to transform your support operations? See your personalized 10-minute setup today and join enterprise teams automating their workflow."
animationType="background-highlight"
background={{ variant: "floatingGradient" }}
background={{ variant: "glowing-orb" }}
useInvertedBackground={false}
buttons={[
{
text: "See Your 10-Minute Setup", href: "#"},
text: "See Your 10-Minute Setup", href: "/contact"
},
{
text: "Schedule a Demo", href: "#"},
text: "Schedule a Demo", href: "/contact"
},
]}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardFifteen
testimonial="OpenFlow AI transformed how we handle employee support. What used to take our team days now happens instantly. The ROI was clear within the first month. This is exactly what we needed."
rating={5}
author="Jennifer Walsh, VP of Operations"
ratingAnimation="slide-up"
avatarsAnimation="slide-up"
useInvertedBackground={false}
avatars={[
{
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al5lXq4FuvVTsncx15643rVlte/small-circular-profile-photo-of-a-divers-1773154562085-06e8065d.png", alt: "Team member 1"
},
{
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al5lXq4FuvVTsncx15643rVlte/small-circular-profile-photo-of-a-profes-1773154562814-b37ac6ef.png", alt: "Team member 2"
},
{
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al5lXq4FuvVTsncx15643rVlte/small-circular-profile-photo-of-a-profes-1773154562621-12add09e.png", alt: "Team member 3"
},
{
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al5lXq4FuvVTsncx15643rVlte/small-circular-profile-photo-of-a-divers-1773154562606-3ba07073.jpg", alt: "Team member 4"
},
{
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al5lXq4FuvVTsncx15643rVlte/small-circular-profile-photo-of-a-profes-1773154562281-8b0fa2b3.png", alt: "Team member 5"
},
{
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al5lXq4FuvVTsncx15643rVlte/small-circular-profile-photo-of-a-divers-1773154564718-495f9123.jpg", alt: "Team member 6"
},
]}
/>
</div>
@@ -100,7 +132,8 @@ export default function ContactPage() {
speed={40}
showCard={true}
names={[
"TechCorp", "CloudScale", "FinFlow", "Enterprise Solutions", "Innovation Labs", "Global Services", "Digital Systems", "Future Tech"]}
"TechCorp", "CloudScale", "FinFlow", "Enterprise Solutions", "Innovation Labs", "Global Services", "Digital Systems", "Future Tech"
]}
/>
</div>