diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index 4050622..1819427 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -15,36 +15,33 @@ import {
export default function AboutPage() {
const navItems = [
- { name: "Home", id: "home" },
- { name: "Services", id: "services" },
+ { name: "Home", id: "/" },
+ { name: "Services", id: "/services" },
{ name: "Why Us", id: "why-us" },
{ name: "Pricing", id: "pricing" },
- { name: "About", id: "about" },
- { name: "Contact", id: "contact" },
+ { name: "About", id: "/about" },
+ { name: "Contact", id: "/contact" },
];
const footerColumns = [
{
- title: "Product",
- items: [
- { label: "Website Design", href: "/" },
- { label: "SEO Optimization", href: "/" },
- { label: "Digital Advertising", href: "/" },
- { label: "Pricing", href: "/" },
+ title: "Product", items: [
+ { label: "Website Design", href: "/services" },
+ { label: "SEO Optimization", href: "/services" },
+ { label: "Digital Advertising", href: "/services" },
+ { label: "Pricing", href: "#pricing" },
],
},
{
- title: "Company",
- items: [
+ title: "Company", items: [
{ label: "About Us", href: "/about" },
- { label: "Our Process", href: "/" },
- { label: "Testimonials", href: "/" },
+ { label: "Our Process", href: "#process" },
+ { label: "Testimonials", href: "#testimonials" },
{ label: "Contact", href: "/contact" },
],
},
{
- title: "Legal",
- items: [
+ title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Cookie Policy", href: "#" },
@@ -70,9 +67,7 @@ export default function AboutPage() {
brandName="BrandLift"
navItems={navItems}
button={{
- text: "Schedule Meeting",
- href: "/contact",
- }}
+ text: "Schedule Meeting", href: "/contact"}}
/>
@@ -80,15 +75,11 @@ export default function AboutPage() {
@@ -100,25 +91,13 @@ export default function AboutPage() {
description="These principles guide everything we do at BrandLift."
metrics={[
{
- id: "1",
- value: "Speed",
- title: "Fast Delivery",
- description: "We respect your time. Most sites launch within 48 hours.",
- icon: Zap,
+ id: "1", value: "Speed", title: "Fast Delivery", description: "We respect your time. Most sites launch within 48 hours.", icon: Zap,
},
{
- id: "2",
- value: "Value",
- title: "Affordable Pricing",
- description: "Premium quality doesn't require premium pricing. Our plans work for businesses of all sizes.",
- icon: DollarSign,
+ id: "2", value: "Value", title: "Affordable Pricing", description: "Premium quality doesn't require premium pricing. Our plans work for businesses of all sizes.", icon: DollarSign,
},
{
- id: "3",
- value: "Excellence",
- title: "Premium Quality",
- description: "Every site we build reflects our commitment to excellence and professional design.",
- icon: Sparkles,
+ id: "3", value: "Excellence", title: "Premium Quality", description: "Every site we build reflects our commitment to excellence and professional design.", icon: Sparkles,
},
]}
gridVariant="uniform-all-items-equal"
@@ -137,46 +116,22 @@ export default function AboutPage() {
animationType="slide-up"
testimonials={[
{
- id: "1",
- name: "Sarah Johnson",
- role: "Owner",
- company: "Local Fitness Studio",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-middle-aged-business-leader_1262-4823.jpg?_wi=2",
- imageAlt: "Sarah Johnson",
- },
+ id: "1", name: "Sarah Johnson", role: "Owner", company: "Local Fitness Studio", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-middle-aged-business-leader_1262-4823.jpg?_wi=2", imageAlt: "Sarah Johnson"},
{
- id: "2",
- name: "Michael Chen",
- role: "CEO",
- company: "Digital Marketing Agency",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/female-employee-black-suit-looks-positive_114579-21797.jpg?_wi=2",
- imageAlt: "Michael Chen",
- },
+ id: "2", name: "Michael Chen", role: "CEO", company: "Digital Marketing Agency", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/female-employee-black-suit-looks-positive_114579-21797.jpg?_wi=2", imageAlt: "Michael Chen"},
{
- id: "3",
- name: "Emily Rodriguez",
- role: "Founder",
- company: "E-commerce Business",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-black-suit_23-2148401442.jpg?_wi=2",
- imageAlt: "Emily Rodriguez",
- },
+ id: "3", name: "Emily Rodriguez", role: "Founder", company: "E-commerce Business", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-black-suit_23-2148401442.jpg?_wi=2", imageAlt: "Emily Rodriguez"},
]}
kpiItems={[
{
- value: "500+",
- label: "Sites Launched",
- },
+ value: "500+", label: "Sites Launched"},
{
- value: "48hrs",
- label: "Average Launch",
- },
+ value: "48hrs", label: "Average Launch"},
{
- value: "95%",
- label: "Client Satisfaction",
- },
+ value: "95%", label: "Client Satisfaction"},
]}
/>
@@ -190,4 +145,4 @@ export default function AboutPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index fb91adf..8fe3ca4 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -10,36 +10,33 @@ import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
export default function ContactPage() {
const navItems = [
- { name: "Home", id: "home" },
- { name: "Services", id: "services" },
+ { name: "Home", id: "/" },
+ { name: "Services", id: "/services" },
{ name: "Why Us", id: "why-us" },
{ name: "Pricing", id: "pricing" },
- { name: "About", id: "about" },
- { name: "Contact", id: "contact" },
+ { name: "About", id: "/about" },
+ { name: "Contact", id: "/contact" },
];
const footerColumns = [
{
- title: "Product",
- items: [
- { label: "Website Design", href: "/" },
- { label: "SEO Optimization", href: "/" },
- { label: "Digital Advertising", href: "/" },
- { label: "Pricing", href: "/" },
+ title: "Product", items: [
+ { label: "Website Design", href: "/services" },
+ { label: "SEO Optimization", href: "/services" },
+ { label: "Digital Advertising", href: "/services" },
+ { label: "Pricing", href: "#pricing" },
],
},
{
- title: "Company",
- items: [
+ title: "Company", items: [
{ label: "About Us", href: "/about" },
- { label: "Our Process", href: "/" },
- { label: "Testimonials", href: "/" },
+ { label: "Our Process", href: "#process" },
+ { label: "Testimonials", href: "#testimonials" },
{ label: "Contact", href: "/contact" },
],
},
{
- title: "Legal",
- items: [
+ title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Cookie Policy", href: "#" },
@@ -65,9 +62,7 @@ export default function ContactPage() {
brandName="BrandLift"
navItems={navItems}
button={{
- text: "Schedule Meeting",
- href: "/contact",
- }}
+ text: "Schedule Meeting", href: "/contact"}}
/>
@@ -75,15 +70,11 @@ export default function ContactPage() {
@@ -95,8 +86,7 @@ export default function ContactPage() {
title="Get Started Today"
description="Tell us about your business and what you're looking to achieve. One of our experts will reach out to discuss how we can help you succeed online."
background={{
- variant: "circleGradient",
- }}
+ variant: "circleGradient"}}
useInvertedBackground={false}
inputPlaceholder="Enter your email"
buttonText="Schedule Meeting"
@@ -111,25 +101,13 @@ export default function ContactPage() {
features={[
{
id: 1,
- title: "How quickly can you build my website?",
- description: "Most websites are built and launched within 48 hours. We prioritize speed without compromising quality.",
- imageSrc: "http://img.b2bpic.net/free-vector/web-elements-design_1212-645.jpg?_wi=5",
- imageAlt: "Quick delivery",
- },
+ title: "How quickly can you build my website?", description: "Most websites are built and launched within 48 hours. We prioritize speed without compromising quality.", imageSrc: "http://img.b2bpic.net/free-vector/web-elements-design_1212-645.jpg?_wi=5", imageAlt: "Quick delivery"},
{
id: 2,
- title: "What if I need changes after launch?",
- description: "We offer flexible payment plans that include ongoing support and updates. You can make changes anytime based on your plan.",
- imageSrc: "http://img.b2bpic.net/free-vector/team-work-background-flat-style_23-2147763073.jpg",
- imageAlt: "Ongoing support",
- },
+ title: "What if I need changes after launch?", description: "We offer flexible payment plans that include ongoing support and updates. You can make changes anytime based on your plan.", imageSrc: "http://img.b2bpic.net/free-vector/team-work-background-flat-style_23-2147763073.jpg", imageAlt: "Ongoing support"},
{
id: 3,
- title: "Do you work with small businesses?",
- description: "Yes! We specialize in working with small and medium-sized businesses. Our flexible pricing works for any budget.",
- imageSrc: "http://img.b2bpic.net/free-photo/search-engine-optimization-target-marketing-concept-bokeh-b_1357-304.jpg?_wi=3",
- imageAlt: "Small business support",
- },
+ title: "Do you work with small businesses?", description: "Yes! We specialize in working with small and medium-sized businesses. Our flexible pricing works for any budget.", imageSrc: "http://img.b2bpic.net/free-photo/search-engine-optimization-target-marketing-concept-bokeh-b_1357-304.jpg?_wi=3", imageAlt: "Small business support"},
]}
textboxLayout="default"
useInvertedBackground={false}
@@ -145,4 +123,4 @@ export default function ContactPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index e859ac1..050ae99 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -22,12 +22,12 @@ import {
export default function HomePage() {
const navItems = [
- { name: "Home", id: "home" },
- { name: "Services", id: "services" },
+ { name: "Home", id: "/" },
+ { name: "Services", id: "/services" },
{ name: "Why Us", id: "why-us" },
{ name: "Pricing", id: "pricing" },
- { name: "About", id: "about" },
- { name: "Contact", id: "contact" },
+ { name: "About", id: "/about" },
+ { name: "Contact", id: "/contact" },
];
const footerColumns = [
diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx
index bcbd646..b3c8b44 100644
--- a/src/app/services/page.tsx
+++ b/src/app/services/page.tsx
@@ -10,18 +10,17 @@ import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
export default function ServicesPage() {
const navItems = [
- { name: "Home", id: "home" },
- { name: "Services", id: "services" },
+ { name: "Home", id: "/" },
+ { name: "Services", id: "/services" },
{ name: "Why Us", id: "why-us" },
{ name: "Pricing", id: "pricing" },
- { name: "About", id: "about" },
- { name: "Contact", id: "contact" },
+ { name: "About", id: "/about" },
+ { name: "Contact", id: "/contact" },
];
const footerColumns = [
{
- title: "Product",
- items: [
+ title: "Product", items: [
{ label: "Website Design", href: "/services" },
{ label: "SEO Optimization", href: "/services" },
{ label: "Digital Advertising", href: "/services" },
@@ -29,8 +28,7 @@ export default function ServicesPage() {
],
},
{
- title: "Company",
- items: [
+ title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Our Process", href: "#process" },
{ label: "Testimonials", href: "#testimonials" },
@@ -38,8 +36,7 @@ export default function ServicesPage() {
],
},
{
- title: "Legal",
- items: [
+ title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Cookie Policy", href: "#" },
@@ -66,9 +63,7 @@ export default function ServicesPage() {
brandName="BrandLift"
navItems={navItems}
button={{
- text: "Schedule Meeting",
- href: "/contact",
- }}
+ text: "Schedule Meeting", href: "/contact"}}
/>
@@ -80,36 +75,20 @@ export default function ServicesPage() {
features={[
{
id: 1,
- title: "Custom Website Design",
- description:
- "We create stunning, modern websites built specifically for your business. Each site is custom-designed to reflect your brand and convert visitors into customers.",
- imageSrc: "http://img.b2bpic.net/free-vector/web-elements-design_1212-645.jpg?_wi=3",
- imageAlt: "Custom website design",
- },
+ title: "Custom Website Design", description:
+ "We create stunning, modern websites built specifically for your business. Each site is custom-designed to reflect your brand and convert visitors into customers.", imageSrc: "http://img.b2bpic.net/free-vector/web-elements-design_1212-645.jpg?_wi=3", imageAlt: "Custom website design"},
{
id: 2,
- title: "E-Commerce Solutions",
- description:
- "Launch an online store that sells. We build e-commerce platforms with payment processing, inventory management, and customer tracking.",
- imageSrc: "http://img.b2bpic.net/free-vector/web-elements-design_1212-645.jpg?_wi=4",
- imageAlt: "E-commerce solutions",
- },
+ title: "E-Commerce Solutions", description:
+ "Launch an online store that sells. We build e-commerce platforms with payment processing, inventory management, and customer tracking.", imageSrc: "http://img.b2bpic.net/free-vector/web-elements-design_1212-645.jpg?_wi=4", imageAlt: "E-commerce solutions"},
{
id: 3,
- title: "SEO Optimization",
- description:
- "Get found on Google. Our SEO strategies are proven to increase organic traffic, improve rankings, and bring qualified leads to your site.",
- imageSrc: "http://img.b2bpic.net/free-photo/search-engine-optimization-target-marketing-concept-bokeh-b_1357-304.jpg?_wi=2",
- imageAlt: "SEO optimization",
- },
+ title: "SEO Optimization", description:
+ "Get found on Google. Our SEO strategies are proven to increase organic traffic, improve rankings, and bring qualified leads to your site.", imageSrc: "http://img.b2bpic.net/free-photo/search-engine-optimization-target-marketing-concept-bokeh-b_1357-304.jpg?_wi=2", imageAlt: "SEO optimization"},
{
id: 4,
- title: "Paid Advertising Management",
- description:
- "Strategic Facebook, Instagram, and Google Ads campaigns designed to reach your ideal customers and maximize your return on investment.",
- imageSrc: "http://img.b2bpic.net/free-psd/flat-design-influencer-template_23-2150406132.jpg?_wi=2",
- imageAlt: "Paid advertising",
- },
+ title: "Paid Advertising Management", description:
+ "Strategic Facebook, Instagram, and Google Ads campaigns designed to reach your ideal customers and maximize your return on investment.", imageSrc: "http://img.b2bpic.net/free-psd/flat-design-influencer-template_23-2150406132.jpg?_wi=2", imageAlt: "Paid advertising"},
]}
tag="Service Details"
textboxLayout="default"
@@ -127,64 +106,22 @@ export default function ServicesPage() {
animationType="slide-up"
plans={[
{
- id: "full-service",
- tag: "Most Popular",
- price: "$375",
- period: "/month",
- description: "Perfect for businesses ready to grow",
- button: {
- text: "Get Started",
- href: "/contact",
- },
- featuresTitle: "What's Included",
- features: [
- "Custom website build",
- "Hosting included",
- "Unlimited monthly updates",
- "Ongoing support",
- "4-month minimum commitment",
- "Buy-out option available ($850)",
- ],
+ id: "full-service", tag: "Most Popular", price: "$375", period: "/month", description: "Perfect for businesses ready to grow", button: {
+ text: "Get Started", href: "/contact"},
+ featuresTitle: "What's Included", features: [
+ "Custom website build", "Hosting included", "Unlimited monthly updates", "Ongoing support", "4-month minimum commitment", "Buy-out option available ($850)"],
},
{
- id: "hybrid",
- tag: "Flexible",
- price: "$1,000",
- period: "setup + $250/month",
- description: "Great for businesses wanting flexibility",
- button: {
- text: "Learn More",
- href: "/contact",
- },
- featuresTitle: "What's Included",
- features: [
- "Custom website build",
- "Monthly maintenance",
- "Regular updates",
- "Technical support",
- "No long-term contracts",
- "Perfect for evolving businesses",
- ],
+ id: "hybrid", tag: "Flexible", price: "$1,000", period: "setup + $250/month", description: "Great for businesses wanting flexibility", button: {
+ text: "Learn More", href: "/contact"},
+ featuresTitle: "What's Included", features: [
+ "Custom website build", "Monthly maintenance", "Regular updates", "Technical support", "No long-term contracts", "Perfect for evolving businesses"],
},
{
- id: "one-time",
- tag: "Simple",
- price: "$1,250",
- period: "one-time",
- description: "For businesses wanting complete ownership",
- button: {
- text: "Get Your Site",
- href: "/contact",
- },
- featuresTitle: "What's Included",
- features: [
- "Fully completed website",
- "Ready to launch immediately",
- "One-time payment only",
- "Transfer to your hosting",
- "Documentation provided",
- "Perfect for self-managed businesses",
- ],
+ id: "one-time", tag: "Simple", price: "$1,250", period: "one-time", description: "For businesses wanting complete ownership", button: {
+ text: "Get Your Site", href: "/contact"},
+ featuresTitle: "What's Included", features: [
+ "Fully completed website", "Ready to launch immediately", "One-time payment only", "Transfer to your hosting", "Documentation provided", "Perfect for self-managed businesses"],
},
]}
/>
@@ -214,4 +151,4 @@ export default function ServicesPage() {
);
-}
\ No newline at end of file
+}