Merge version_3 into main
Merge version_3 into main
This commit was merged in pull request #2.
This commit is contained in:
@@ -3,10 +3,10 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import AboutMetric from '@/components/sections/about/AboutMetric';
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
||||
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
|
||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
@@ -246,26 +246,37 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "gradient-bars"}}
|
||||
tag="Let's Connect"
|
||||
title="Ready to Grow Your Business?"
|
||||
description="Schedule a free consultation today to discuss your vision and how Hamilton Business Consulting can help you achieve your strategic objectives."
|
||||
tagIcon={MessageSquare}
|
||||
inputPlaceholder="Enter your email for a free consultation"
|
||||
buttonText="Get Started"
|
||||
termsText="By clicking Get Started you're confirming that you agree with our Privacy Policy and Terms of Service."
|
||||
onSubmit={(email) => console.log(email)}
|
||||
title="Get in Touch"
|
||||
description="Reach out to Hamilton Business Consulting. We're here to answer your questions and help you achieve your business goals.\n\nPhone: +1 (555) 123-4567\nEmail: info@hamiltonconsulting.com\nAddress: 123 Business Blvd, Suite 100, Miami, FL 33101"
|
||||
inputs={[
|
||||
{
|
||||
name: "name", type: "text", placeholder: "Your Name", required: true},
|
||||
{
|
||||
name: "email", type: "email", placeholder: "Your Email", required: true},
|
||||
{
|
||||
name: "phone", type: "tel", placeholder: "Your Phone (Optional)"},
|
||||
]}
|
||||
textarea={{
|
||||
name: "message", placeholder: "Your Message", rows: 5,
|
||||
required: true}}
|
||||
buttonText="Send Message"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/communication-customer-service-support-concept_53876-127926.jpg"
|
||||
imageAlt="Contact us illustration"
|
||||
mediaPosition="right"
|
||||
onSubmit={(data) => console.log(data)}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
<FooterMedia
|
||||
logoText="Hamilton Business Consulting"
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
title: "Quick Links", items: [
|
||||
{
|
||||
label: "Home", href: "#home"},
|
||||
{
|
||||
label: "About Us", href: "#about"},
|
||||
{
|
||||
@@ -275,20 +286,32 @@ export default function LandingPage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
title: "Support", items: [
|
||||
{
|
||||
label: "FAQ", href: "#faq"},
|
||||
{
|
||||
label: "Contact", href: "#contact"},
|
||||
label: "Contact Us", href: "#contact"},
|
||||
{
|
||||
label: "Privacy Policy", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact Info", items: [
|
||||
{
|
||||
label: "123 Business Blvd, Suite 100, Miami, FL 33101", href: "#"},
|
||||
{
|
||||
label: "+1 (555) 123-4567", href: "tel:+15551234567"},
|
||||
{
|
||||
label: "info@hamiltonconsulting.com", href: "mailto:info@hamiltonconsulting.com"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="Hamilton Business Consulting"
|
||||
copyrightText="© 2024 Hamilton Business Consulting. All rights reserved."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/modern-office-building-with-blue-sky_1127-3172.jpg"
|
||||
imageAlt="Modern office building"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user