Merge version_6 into main #10
@@ -15,6 +15,10 @@ import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||
import { Monitor, Palette, Zap } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
const handleInquireClick = () => {
|
||||
window.location.href = "mailto:brightlinewebsolutions@gmail.com";
|
||||
};
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
@@ -48,7 +52,7 @@ export default function LandingPage() {
|
||||
title="Elevating Brands Through Premium Web Design"
|
||||
description="Brightline Web crafts high-converting digital experiences that turn visitors into loyal customers. We blend aesthetics with strategy."
|
||||
tag="Crafting Premium Digital Growth"
|
||||
buttons={[{ text: "Get Your Free Strategy - Contact: brightlinewebsolutions@gmail.com", href: "#contact" }]}
|
||||
buttons={[{ text: "Get Your Free Strategy", onClick: handleInquireClick }]}
|
||||
mediaItems={[
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/3d-cinema-glasses-isolated-white-background_23-2148188109.jpg", imageAlt: "minimalist abstract web design agency" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/colorful-light-prisms-effect_23-2148898156.jpg", imageAlt: "minimalist abstract web design agency" }
|
||||
@@ -114,15 +118,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{
|
||||
id: "starter", badge: "Essential", price: "$600", subtitle: "For small businesses starting out", buttons: [{ text: "Inquire" }],
|
||||
id: "starter", badge: "Essential", price: "$600", subtitle: "For small businesses starting out", buttons: [{ text: "Inquire", onClick: handleInquireClick }],
|
||||
features: ["Custom Landing Page", "Responsive Layout", "Basic SEO Optimization"]
|
||||
},
|
||||
{
|
||||
id: "growth", badge: "Popular", price: "$1000", subtitle: "For established brands scaling up", buttons: [{ text: "Inquire" }],
|
||||
id: "growth", badge: "Popular", price: "$1000", subtitle: "For established brands scaling up", buttons: [{ text: "Inquire", onClick: handleInquireClick }],
|
||||
features: ["Full Website Design", "Content Strategy", "Advanced SEO Setup", "Speed Optimization"]
|
||||
},
|
||||
{
|
||||
id: "enterprise", badge: "Pro ", price: "Pro ", subtitle: "For ambitious enterprise needs", buttons: [{ text: "Get a Quote" }],
|
||||
id: "enterprise", badge: "Pro ", price: "Pro ", subtitle: "For ambitious enterprise needs", buttons: [{ text: "Get a Quote", onClick: handleInquireClick }],
|
||||
features: ["Full Identity Systems", "Enterprise Architecture", "Ongoing Maintenance", "Direct Support"]
|
||||
}
|
||||
]}
|
||||
@@ -175,12 +179,12 @@ export default function LandingPage() {
|
||||
inputPlaceholder="Your business email"
|
||||
buttonText="Get Started"
|
||||
tag="Let's Talk"
|
||||
onSubmit={(email: string) => {}}
|
||||
onSubmit={handleInquireClick}
|
||||
/>
|
||||
<div className="flex flex-wrap gap-4 justify-center py-8">
|
||||
<a href="mailto:brightlinewebsolutions@gmail.com" className="bg-primary-cta text-primary-cta-text px-6 py-3 rounded-full font-medium hover:opacity-90 transition-opacity">
|
||||
<button onClick={handleInquireClick} className="bg-primary-cta text-primary-cta-text px-6 py-3 rounded-full font-medium hover:opacity-90 transition-opacity">
|
||||
Email Us
|
||||
</a>
|
||||
</button>
|
||||
<a href="tel:3233243186" className="bg-secondary-cta text-secondary-cta-text px-6 py-3 rounded-full font-medium hover:opacity-90 transition-opacity border border-accent">
|
||||
Call: 323-324-3186
|
||||
</a>
|
||||
|
||||
Reference in New Issue
Block a user