18 Commits

Author SHA1 Message Date
ec209bad50 Update src/app/page.tsx 2026-05-12 15:00:36 +00:00
fa84969468 Update src/app/page.tsx 2026-05-12 14:59:49 +00:00
48df1ad37f Update src/app/contact/page.tsx 2026-05-12 14:56:37 +00:00
738c74ff3d Update src/app/page.tsx 2026-05-12 14:56:11 +00:00
c83bea48f6 Update src/app/contact/page.tsx 2026-05-12 14:56:11 +00:00
f1d3c25db3 Merge version_14 into main
Merge version_14 into main
2026-05-12 14:54:39 +00:00
2f89f465c1 Update src/app/page.tsx 2026-05-12 14:54:36 +00:00
3256fb46c4 Update src/app/contact/page.tsx 2026-05-12 14:54:35 +00:00
94af222d75 Merge version_13 into main
Merge version_13 into main
2026-05-12 14:53:38 +00:00
18ca15078b Update src/app/page.tsx 2026-05-12 14:53:35 +00:00
cb4c39c748 Update src/app/contact/page.tsx 2026-05-12 14:53:35 +00:00
9a51387878 Merge version_12 into main
Merge version_12 into main
2026-05-12 14:50:36 +00:00
15ca3e1b5c Update src/app/page.tsx 2026-05-12 14:50:33 +00:00
39254b3b3f Update src/app/contact/page.tsx 2026-05-12 14:50:33 +00:00
63dd7d433b Merge version_11 into main
Merge version_11 into main
2026-05-11 20:22:49 +00:00
dea44de9d2 Update src/app/page.tsx 2026-05-11 20:22:42 +00:00
33fc3bed05 Update src/app/contact/page.tsx 2026-05-11 20:22:42 +00:00
114b7ad5ae Merge version_10 into main
Merge version_10 into main
2026-05-11 20:20:52 +00:00
2 changed files with 20 additions and 8 deletions

View File

@@ -2,7 +2,7 @@
import { useState } from "react"; import { useState } from "react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
@@ -23,8 +23,12 @@ export default function ContactPage() {
headingFontWeight="normal" headingFontWeight="normal"
> >
<ReactLenis root> <ReactLenis root>
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingInline
navItems={[{ name: "Home", id: "/" }, { name: "Contact", id: "/contact" }]} navItems={[{ name: "Home", id: "/" }, { name: "Contact", id: "/contact" }]}
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Dan5Ic1q1Umi6BwcobeOcsttrO/uploaded-1778597600633-cjlo78tg.png"
logoClassName="scale-[2.5]"
className="py-6"
button={{ text: "Get Started", href: "/contact" }}
/> />
<div className="pt-32 pb-16 px-6 max-w-4xl mx-auto"> <div className="pt-32 pb-16 px-6 max-w-4xl mx-auto">
<h1 className="text-4xl font-bold mb-8">Contact Us</h1> <h1 className="text-4xl font-bold mb-8">Contact Us</h1>
@@ -47,6 +51,7 @@ export default function ContactPage() {
<FooterLogoEmphasis <FooterLogoEmphasis
columns={[{ items: [{ label: "Home", href: "/" }, { label: "Contact", href: "/contact" }] }]} columns={[{ items: [{ label: "Home", href: "/" }, { label: "Contact", href: "/contact" }] }]}
logoText="Benak Consulting LLC" logoText="Benak Consulting LLC"
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Dan5Ic1q1Umi6BwcobeOcsttrO/uploaded-1778597600633-cjlo78tg.png"
/> />
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>

View File

@@ -7,7 +7,7 @@ import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwe
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial'; import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import { Award, Target, Users } from "lucide-react"; import { Award, Target, Users } from "lucide-react";
@@ -28,14 +28,17 @@ export default function LandingPage() {
> >
<ReactLenis root> <ReactLenis root>
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingInline
navItems={[ navItems={[
{ name: "Home", id: "hero" }, { name: "Home", id: "hero" },
{ name: "About Us", id: "about" }, { name: "About Us", id: "about" },
{ name: "Services", id: "services" }, { name: "Services", id: "services" },
{ name: "Contact", id: "contact" }, { name: "Contact", id: "/contact" },
]} ]}
brandName="Benak Consulting LLC" logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Dan5Ic1q1Umi6BwcobeOcsttrO/uploaded-1778597600633-cjlo78tg.png"
logoClassName="scale-[2.5]"
className="py-6"
button={{ text: "Contact Us ", href: "/contact" }}
/> />
</div> </div>
@@ -49,7 +52,7 @@ export default function LandingPage() {
{ name: "Emily Rodriguez", handle: "@growthco", testimonial: "They truly understand our staffing needs and deliver quality professionals fast.", rating: 5 }, { name: "Emily Rodriguez", handle: "@growthco", testimonial: "They truly understand our staffing needs and deliver quality professionals fast.", rating: 5 },
]} ]}
buttons={[ buttons={[
{ text: "Contact Us", href: "/contact" }, { text: "", href: "/contact" },
]} ]}
background={{ variant: "plain" }} background={{ variant: "plain" }}
imageSrc="http://img.b2bpic.net/free-photo/two-business-woman-working-office-with-digital-tablet_1301-3550.jpg?_wi=1" imageSrc="http://img.b2bpic.net/free-photo/two-business-woman-working-office-with-digital-tablet_1301-3550.jpg?_wi=1"
@@ -119,7 +122,10 @@ export default function LandingPage() {
faqs={[ faqs={[
{ id: "q1", title: "What kind of IT staffing do you support?", content: "We support contract, project-based, and long-term staffing. Our streamlined onboarding process ensures a industry-leading time-to-fill, typically identifying and vetting top-tier candidates within 5-7 business days." }, { id: "q1", title: "What kind of IT staffing do you support?", content: "We support contract, project-based, and long-term staffing. Our streamlined onboarding process ensures a industry-leading time-to-fill, typically identifying and vetting top-tier candidates within 5-7 business days." },
{ id: "q2", title: "Do you provide consulting services?", content: "Yes, our consulting services help organizations plan, manage, and execute technology initiatives. We leverage our network to rapidly onboard experts to minimize project downtime." }, { id: "q2", title: "Do you provide consulting services?", content: "Yes, our consulting services help organizations plan, manage, and execute technology initiatives. We leverage our network to rapidly onboard experts to minimize project downtime." },
{ id: "q3", title: "What is your process for candidate vetting?", content: "We conduct rigorous technical assessments, background checks, and cultural fit interviews. This thorough, yet accelerated process allows us to maintain high speed-to-hire without compromising on talent quality." } { id: "q3", title: "What is your process for candidate vetting?", content: "We conduct rigorous technical assessments, background checks, and cultural fit interviews. This thorough, yet accelerated process allows us to maintain high speed-to-hire without compromising on talent quality." },
{ id: "q4", title: "How do I get started with your services?", content: "You can easily contact us via our contact form or give us a call. We'll set up an initial consultation to understand your needs and provide a tailored proposal." },
{ id: "q5", title: "Are there any long-term commitments?", content: "We offer flexible engagement models tailored to your project scope and duration. Our goal is to provide the support you need, when you need it."},
{ id: "q6", title: "Do you support international clients?", content: "Currently, we focus on providing services within the United States to ensure we meet high regulatory and quality standards, but we are open to discussing global partnerships on a case-by-case basis." }
]} ]}
title="Frequently Asked Questions" title="Frequently Asked Questions"
description="Answers to common inquiries." description="Answers to common inquiries."
@@ -134,6 +140,7 @@ export default function LandingPage() {
{ items: [{ label: "Home", href: "/" }, { label: "Contact", href: "/contact" }] } { items: [{ label: "Home", href: "/" }, { label: "Contact", href: "/contact" }] }
]} ]}
logoText="Benak Consulting LLC" logoText="Benak Consulting LLC"
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Dan5Ic1q1Umi6BwcobeOcsttrO/uploaded-1778597600633-cjlo78tg.png"
/> />
</div> </div>
</ReactLenis> </ReactLenis>