16 Commits

Author SHA1 Message Date
fae2259754 Update src/app/page.tsx 2026-05-12 16:15:46 +00:00
d48b583dd0 Update src/app/contact/page.tsx 2026-05-12 16:15:46 +00:00
e519265bc9 Merge version_16 into main
Merge version_16 into main
2026-05-12 16:15:12 +00:00
88130b0124 Update src/app/page.tsx 2026-05-12 16:15:05 +00:00
9b53d7f4c5 Merge version_16 into main
Merge version_16 into main
2026-05-12 15:01:17 +00:00
e627e65bdb Update src/app/page.tsx 2026-05-12 15:01:14 +00:00
64f1e388b8 Merge version_15 into main
Merge version_15 into main
2026-05-12 15:00:39 +00:00
ec209bad50 Update src/app/page.tsx 2026-05-12 15:00:36 +00:00
9573a491f4 Merge version_15 into main
Merge version_15 into main
2026-05-12 14:59:52 +00:00
fa84969468 Update src/app/page.tsx 2026-05-12 14:59:49 +00:00
321ea5ceb7 Merge version_15 into main
Merge version_15 into main
2026-05-12 14:56:40 +00:00
48df1ad37f Update src/app/contact/page.tsx 2026-05-12 14:56:37 +00:00
3103325d2d Merge version_15 into main
Merge version_15 into main
2026-05-12 14:56:15 +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
2 changed files with 11 additions and 10 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,10 +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" logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Dan5Ic1q1Umi6BwcobeOcsttrO/uploaded-1778597600633-cjlo78tg.png"
logoClassName="scale-150" logoClassName="scale-[1.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>

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,7 +28,7 @@ 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" },
@@ -36,7 +36,9 @@ export default function LandingPage() {
{ name: "Contact", id: "/contact" }, { name: "Contact", id: "/contact" },
]} ]}
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Dan5Ic1q1Umi6BwcobeOcsttrO/uploaded-1778597600633-cjlo78tg.png" logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Dan5Ic1q1Umi6BwcobeOcsttrO/uploaded-1778597600633-cjlo78tg.png"
logoClassName="scale-150" logoClassName="scale-[1.5]"
className="py-6"
button={{ text: "Contact Us ", href: "/contact" }}
/> />
</div> </div>
@@ -49,9 +51,6 @@ export default function LandingPage() {
{ name: "Michael Chen", handle: "@innovatelab", testimonial: "Reliable communication and deep technical expertise every single time.", rating: 5 }, { name: "Michael Chen", handle: "@innovatelab", testimonial: "Reliable communication and deep technical expertise every single time.", rating: 5 },
{ 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={[
{ text: "Contact Us", 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"
/> />
@@ -138,7 +137,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" logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Dan5Ic1q1Umi6BwcobeOcsttrO/uploaded-1778602491420-95nrleel.png"
/> />
</div> </div>
</ReactLenis> </ReactLenis>