Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2bca185b60 | |||
| 067e9bb6d9 | |||
| de544c36fe |
@@ -3,9 +3,9 @@
|
|||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||||
import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven';
|
import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven';
|
||||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||||
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
||||||
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
|
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
|
||||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||||
@@ -209,7 +209,7 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="faq" data-section="faq">
|
<div id="faq" data-section="faq">
|
||||||
<FaqBase
|
<FaqSplitMedia
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
faqs={[
|
faqs={[
|
||||||
@@ -228,6 +228,14 @@ export default function LandingPage() {
|
|||||||
description="Have questions about our process, services, or how we can help your business? Find answers to the most common inquiries here."
|
description="Have questions about our process, services, or how we can help your business? Find answers to the most common inquiries here."
|
||||||
tag="Need Answers?"
|
tag="Need Answers?"
|
||||||
faqsAnimation="slide-up"
|
faqsAnimation="slide-up"
|
||||||
|
imageSrc="http://img.b2bpic.net/free-photo/diverse-group-employees-working-together_23-2149547844.jpg"
|
||||||
|
imageAlt="Team working on solutions"
|
||||||
|
mediaAnimation="slide-up"
|
||||||
|
mediaPosition="right"
|
||||||
|
buttons={[
|
||||||
|
{
|
||||||
|
text: "Still have questions? Contact us!", href: "#contact"}
|
||||||
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -246,66 +254,34 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
name: "company", type: "text", placeholder: "Company (Optional)"},
|
name: "company", type: "text", placeholder: "Company (Optional)"},
|
||||||
]}
|
]}
|
||||||
|
multiSelect={{
|
||||||
|
name: "service", label: "What service are you interested in?", options: ["Web Development", "E-commerce", "Mobile Apps", "UI/UX Design", "SEO & Marketing", "Cloud & Hosting", "Other"]
|
||||||
|
}}
|
||||||
textarea={{
|
textarea={{
|
||||||
name: "message", placeholder: "Tell us about your project...", rows: 5,
|
name: "message", placeholder: "Tell us about your project, goals, and any specific requirements...", rows: 5,
|
||||||
required: true,
|
required: true,
|
||||||
}}
|
}}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/3d-realistic-globe-with-musical-elements_23-2151500696.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/3d-realistic-globe-with-musical-elements_23-2151500696.jpg"
|
||||||
imageAlt="Abstract image of global digital communication and interconnected nodes"
|
imageAlt="Abstract image of global digital communication and interconnected nodes"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
mediaPosition="right"
|
mediaPosition="right"
|
||||||
buttonText="Send Message"
|
buttonText="Send Your Inquiry"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBase
|
<FooterLogoReveal
|
||||||
columns={[
|
|
||||||
{
|
|
||||||
title: "Services", items: [
|
|
||||||
{
|
|
||||||
label: "Web Development", href: "#features"},
|
|
||||||
{
|
|
||||||
label: "E-commerce", href: "#features"},
|
|
||||||
{
|
|
||||||
label: "UI/UX Design", href: "#features"},
|
|
||||||
{
|
|
||||||
label: "Mobile Apps", href: "#features"},
|
|
||||||
{
|
|
||||||
label: "SEO & Marketing", href: "#features"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Company", items: [
|
|
||||||
{
|
|
||||||
label: "About Us", href: "#about"},
|
|
||||||
{
|
|
||||||
label: "Portfolio", href: "#products"},
|
|
||||||
{
|
|
||||||
label: "Testimonials", href: "#testimonials"},
|
|
||||||
{
|
|
||||||
label: "Contact", href: "#contact"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Resources", items: [
|
|
||||||
{
|
|
||||||
label: "FAQ", href: "#faq"},
|
|
||||||
{
|
|
||||||
label: "Privacy Policy", href: "#"},
|
|
||||||
{
|
|
||||||
label: "Terms of Service", href: "#"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=vd4nr3"
|
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=vd4nr3"
|
||||||
logoAlt="VertexIT logo"
|
logoAlt="VertexIT logo"
|
||||||
logoText="VertexIT"
|
logoText="VertexIT"
|
||||||
copyrightText="© 2025 VertexIT. All rights reserved. Powered by Onel."
|
leftLink={{
|
||||||
|
text: "Privacy Policy", href: "#"}}
|
||||||
|
rightLink={{
|
||||||
|
text: "Terms of Service", href: "#"}}
|
||||||
ariaLabel="Site footer navigation"
|
ariaLabel="Site footer navigation"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user