Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 95a7fd5679 | |||
| d840ea4b6a | |||
| 0f15779986 |
@@ -3,10 +3,10 @@
|
|||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import AboutMetric from '@/components/sections/about/AboutMetric';
|
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 FaqDouble from '@/components/sections/faq/FaqDouble';
|
||||||
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
|
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 HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
|
||||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
@@ -246,26 +246,37 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactCenter
|
<ContactSplitForm
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
background={{
|
title="Get in Touch"
|
||||||
variant: "gradient-bars"}}
|
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"
|
||||||
tag="Let's Connect"
|
inputs={[
|
||||||
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."
|
name: "name", type: "text", placeholder: "Your Name", required: true},
|
||||||
tagIcon={MessageSquare}
|
{
|
||||||
inputPlaceholder="Enter your email for a free consultation"
|
name: "email", type: "email", placeholder: "Your Email", required: true},
|
||||||
buttonText="Get Started"
|
{
|
||||||
termsText="By clicking Get Started you're confirming that you agree with our Privacy Policy and Terms of Service."
|
name: "phone", type: "tel", placeholder: "Your Phone (Optional)"},
|
||||||
onSubmit={(email) => console.log(email)}
|
]}
|
||||||
|
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>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoEmphasis
|
<FooterMedia
|
||||||
|
logoText="Hamilton Business Consulting"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
items: [
|
title: "Quick Links", items: [
|
||||||
|
{
|
||||||
|
label: "Home", href: "#home"},
|
||||||
{
|
{
|
||||||
label: "About Us", href: "#about"},
|
label: "About Us", href: "#about"},
|
||||||
{
|
{
|
||||||
@@ -275,20 +286,32 @@ export default function LandingPage() {
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
items: [
|
title: "Support", items: [
|
||||||
{
|
{
|
||||||
label: "FAQ", href: "#faq"},
|
label: "FAQ", href: "#faq"},
|
||||||
{
|
{
|
||||||
label: "Contact", href: "#contact"},
|
label: "Contact Us", href: "#contact"},
|
||||||
{
|
{
|
||||||
label: "Privacy Policy", href: "#"},
|
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>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user