Merge version_2 into main #2

Merged
bender merged 3 commits from version_2 into main 2026-06-04 12:26:53 +00:00
3 changed files with 16 additions and 19 deletions

View File

@@ -26,10 +26,10 @@ export default function AboutPage() {
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Work", href: "/#work" },
{ name: "Services", href: "/#services" },
{ name: "About", href: "/about" },
{ name: "Contact", href: "/contact" }
{ name: "Work", id: "/work" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" }
]}
button={{ text: "Get Started", href: "/contact" }}
/>
@@ -63,7 +63,6 @@ export default function AboutPage() {
useInvertedBackground={false}
animationType="slide-up"
gridVariant="three-columns-all-equal-width"
mediaClassName="object-[65%_center]"
members={[
{ id: "1", name: "Sarah Miller", role: "Lead Developer", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.webp", imageAlt: "Sarah Miller" },
{ id: "2", name: "Valentina Reyes", role: "Creative Director", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-2.webp", imageAlt: "Valentina Reyes" },

View File

@@ -26,11 +26,11 @@ export default function ServicesPage() {
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Home", href: "/" },
{ name: "Services", href: "/services" },
{ name: "Work", href: "/work" },
{ name: "About", href: "#about" },
{ name: "Contact", href: "#contact" }
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Work", id: "/work" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" }
]}
button={{ text: "Get Started", href: "#contact" }}
/>
@@ -86,7 +86,6 @@ export default function ServicesPage() {
]}
/>
<ContactText
tag="Ready to Start?"
text="Let's discuss your project and bring your vision to life. Contact us today!"
background={{ variant: "radial-gradient" }}
buttons={[
@@ -122,4 +121,4 @@ export default function ServicesPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -26,11 +26,11 @@ export default function WorkPage() {
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Home", href: "/" },
{ name: "Services", href: "/services" },
{ name: "Work", href: "/work" },
{ name: "About", href: "#about" },
{ name: "Contact", href: "#contact" }
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Work", id: "/work" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" }
]}
button={{ text: "Get Started", href: "#contact" }}
/>
@@ -70,7 +70,6 @@ export default function WorkPage() {
]}
/>
<ContactText
tag="Ready to Collaborate?"
text="Have an exciting project in mind? Let's build something remarkable together!"
background={{ variant: "downward-rays-static" }}
buttons={[
@@ -106,4 +105,4 @@ export default function WorkPage() {
</ReactLenis>
</ThemeProvider>
);
}
}