Compare commits
54 Commits
version_16
...
version_23
| Author | SHA1 | Date | |
|---|---|---|---|
| 7e4ed2df73 | |||
| fc10ec9e64 | |||
| 10fdb5e955 | |||
| 83fbb6bfa3 | |||
| 50d139b13b | |||
| 07e12750ca | |||
| 555242143c | |||
| 68bad27acf | |||
| c0fbdce9b8 | |||
| e5a38c489b | |||
| c6641d32c8 | |||
| 2f71547c50 | |||
| a80977064c | |||
| 776b725498 | |||
| e90614d4ac | |||
| 6e01e5a496 | |||
| 340343b23b | |||
| 2f7a771478 | |||
| bfec206898 | |||
| 62276f6915 | |||
| 6616bb776d | |||
| 4ec354d469 | |||
| 4696ad433f | |||
| 983105fdf9 | |||
| ab258b9365 | |||
| 45ff0d0885 | |||
| c421dbf8e4 | |||
| 727dd8819a | |||
| 43d1df6e74 | |||
| 52f34cbbc4 | |||
| db50ee8979 | |||
| 41db11826f | |||
| 67772cb4e4 | |||
| 8c529e8c8d | |||
| d375410b8b | |||
| 3e305a5b48 | |||
| 81cb1f6563 | |||
| e6c200b11f | |||
| edbb57f2c6 | |||
| 16e8ba1dea | |||
| 35a1f49e21 | |||
| 6b4e87d982 | |||
| ffec816741 | |||
| d15dd2093e | |||
| d33d1ce1df | |||
| cad7657792 | |||
| 43042ca188 | |||
| b552bf54dd | |||
| 9f3708d7b3 | |||
| c81f4f5228 | |||
| fa06961a2d | |||
| 1b0bf4d1a7 | |||
| 5550136166 | |||
| 1583d70c0f |
@@ -3,8 +3,7 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
import { Mail } from "lucide-react";
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
@@ -36,27 +35,39 @@ export default function ContactPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
tag="Get In Touch"
|
||||
tagIcon={Mail}
|
||||
title="See What's Possible for Your Business "
|
||||
description="Ready to grow your business? Share your information and let's schedule a call to discuss your needs. Whether you're looking for a website, ads management, creative producti"
|
||||
title="Let's Talk About Your Project"
|
||||
description="We'd love to hear from you. Reach out to us directly with any questions or to discuss how we can help grow your business."
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/premium-photo/abstract-futuristic-blue-background-technology-glowing-lines_118195-51.jpg?id=5040937"
|
||||
imageAlt="Contact us mockup"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai86BRUMbva0WDBhojvh7eeV0v/a-modern-clean-website-design-mockup-dis-1773240171755-25981f6a.png"
|
||||
imageAlt="Contact form illustration"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="your@email.com"
|
||||
buttonText="Get Started"
|
||||
termsText="We respect your privacy. We'll only use your information to discuss your customer acquisition needs."
|
||||
inputPlaceholder="Enter your email"
|
||||
buttonText="Send Message"
|
||||
termsText="By contacting us, you agree to our Terms and Conditions."
|
||||
onSubmit={(email) => console.log('Contact form submitted:', email)}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="Convrsn"
|
||||
leftLink={{ text: "Privacy Policy", href: "#" }}
|
||||
rightLink={{ text: "Terms of Service", href: "#" }}
|
||||
<FooterBaseReveal
|
||||
columns={[
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About", href: "#" },
|
||||
{ label: "Services", href: "#" },
|
||||
{ label: "Contact", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2026 Convrsn. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
|
||||
@@ -91,21 +91,6 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="textbox" data-section="textbox">
|
||||
<div style={{
|
||||
maxWidth: "800px", margin: "0 auto", padding: "3rem 1.5rem", textAlign: "center"
|
||||
}}>
|
||||
<h2 style={{
|
||||
fontSize: "2rem", fontWeight: "700", marginBottom: "1rem", color: "var(--foreground)"
|
||||
}}>Welcome to Our Text Box</h2>
|
||||
<p style={{
|
||||
fontSize: "1.125rem", lineHeight: "1.6", color: "var(--foreground)", opacity: "0.9"
|
||||
}}>
|
||||
This is a simple text box section added to the home page. You can add any content you want here, including text, paragraphs, or any other information you'd like to display to your visitors.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="demo-website" data-section="demo-website">
|
||||
<MetricSplitMediaAbout
|
||||
tag="Low-Friction Path to Results"
|
||||
@@ -196,7 +181,7 @@ export default function LandingPage() {
|
||||
{
|
||||
id: "enterprise", badge: "For Scaling Brands", badgeIcon: Zap,
|
||||
price: "$500/mo", subtitle: "Maximum creative output and strategy", buttons: [{ text: "Get Started", href: "/contact" }],
|
||||
features: ["15+ ad variations monthly", "A/B testing frameworks", "Video and static assets", "Campaign-specific creative", "Unlimited revisions", "Dedicated creative support", ""]
|
||||
features: ["15+ ad variations monthly", "A/B testing frameworks", "Video and static assets", "Campaign-specific creative", " Creative tailored to your offer and audience", "Dedicated creative support", "Structured revision rounds included "]
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
@@ -213,11 +198,11 @@ export default function LandingPage() {
|
||||
tagIcon={Quote}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Sarah Johnson", role: "Founder & CEO", company: "Johnson Construction", rating: 5,
|
||||
id: "1", name: "Mark Johnson ", role: "Founder & CEO", company: "Johnson Construction", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai86BRUMbva0WDBhojvh7eeV0v/professional-headshot-of-a-confident-ent-1773240173131-9be7d8c7.png"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Michael Chen", role: "Owner", company: "Digital Marketing Agency", rating: 5,
|
||||
id: "2", name: "Sarah Johnson ", role: "Owner", company: "Digital Marketing Agency", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai86BRUMbva0WDBhojvh7eeV0v/professional-headshot-of-a-business-prof-1773240172753-c1cf042a.png"
|
||||
},
|
||||
{
|
||||
@@ -225,7 +210,7 @@ export default function LandingPage() {
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai86BRUMbva0WDBhojvh7eeV0v/professional-headshot-of-a-female-busine-1773240171458-9b3db851.png"
|
||||
},
|
||||
{
|
||||
id: "4", name: "David Williams", role: "Service Business Owner", company: "Premium Home Services", rating: 5,
|
||||
id: "4", name: "Michaela Williams", role: "Service Business Owner", company: "Premium Home Services", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai86BRUMbva0WDBhojvh7eeV0v/professional-headshot-of-a-creative-prof-1773240172454-7572c59b.png"
|
||||
}
|
||||
]}
|
||||
@@ -278,4 +263,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user